From 83af7b87c093329c7a21c4367e3ac57bc8cee7d7 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Mon, 12 Jan 2026 17:54:35 -0500 Subject: resume page --- content/resume/index.md | 6 ++++++ hugo.toml | 11 ++++++++--- layouts/resume/page.html | 9 +++++++++ static/resume | 2 +- static/resume.pdf | Bin 0 -> 41166 bytes themes/aoidh/assets/aoidh.css | 14 +++++++++++++- 6 files changed, 37 insertions(+), 5 deletions(-) create mode 100644 content/resume/index.md create mode 100644 layouts/resume/page.html create mode 100644 static/resume.pdf diff --git a/content/resume/index.md b/content/resume/index.md new file mode 100644 index 0000000..6d19a7a --- /dev/null +++ b/content/resume/index.md @@ -0,0 +1,6 @@ ++++ +title = 'Resume' +date = '2026-01-12T16:40:43-05:00' +tags = [] +draft = false ++++ diff --git a/hugo.toml b/hugo.toml index 9f4bb5d..559985e 100644 --- a/hugo.toml +++ b/hugo.toml @@ -14,17 +14,22 @@ theme = 'aoidh' pageRef = '/' weight = 1 + [[menus.main]] + name = 'Résumé' + pageRef = 'resume' + weight = 2 + [[menus.main]] name = 'Auto' pageRef = '/auto' - weight = 2 + weight = 3 [[menus.main]] name = 'Articles' pageRef = '/articles' - weight = 3 + weight = 4 [[menus.main]] name = 'Projects' pageRef = '/projects' - weight = 4 + weight = 5 diff --git a/layouts/resume/page.html b/layouts/resume/page.html new file mode 100644 index 0000000..b2613c6 --- /dev/null +++ b/layouts/resume/page.html @@ -0,0 +1,9 @@ +{{ define "main" }} +

Résumé

+ +

Preview

+ +{{ end }} diff --git a/static/resume b/static/resume index 685c0a2..2e88321 160000 --- a/static/resume +++ b/static/resume @@ -1 +1 @@ -Subproject commit 685c0a209b6bdb468e68045e3d5a74f34037def2 +Subproject commit 2e88321504df2fe0f3427f19bb84251926bb3140 diff --git a/static/resume.pdf b/static/resume.pdf new file mode 100644 index 0000000..5f58532 Binary files /dev/null and b/static/resume.pdf differ diff --git a/themes/aoidh/assets/aoidh.css b/themes/aoidh/assets/aoidh.css index e740e70..2f30b33 100644 --- a/themes/aoidh/assets/aoidh.css +++ b/themes/aoidh/assets/aoidh.css @@ -7,7 +7,11 @@ --light-gray: #eee; --dark-gray: #888; + --pagewidth: 60rem; --parspace: .6em; + + --letter-page-width: 8.5in; + --letter-page-height: 11in; } html { @@ -17,7 +21,7 @@ html { body { margin: 1rem auto; padding: 1rem; - max-width: 60rem; + max-width: var(--pagewidth); border: 1px solid var(--dark-yellow); box-shadow: 2px 2px var(--dark-yellow); } @@ -189,3 +193,11 @@ ul { padding: 0; padding-inline-start: 2em; } + +iframe { + display: block; + width: 100%; + height: var(--letter-page-height); + border: 1px solid var(--dark-yellow); + box-shadow: 2px 2px var(--dark-yellow); +} -- cgit v1.2.3