summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--content/resume/index.md6
-rw-r--r--hugo.toml11
-rw-r--r--layouts/resume/page.html9
m---------static/resume0
-rw-r--r--static/resume.pdfbin0 -> 41166 bytes
-rw-r--r--themes/aoidh/assets/aoidh.css14
6 files changed, 36 insertions, 4 deletions
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
@@ -15,16 +15,21 @@ theme = 'aoidh'
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" }}
+ <h1 class="title">Résumé</h1>
+ <ul>
+ <li><a href="/resume.pdf">PDF →</a></li>
+ <li><a href="/resume/resume.html">HTML →</a></li>
+ </ul>
+ <h1>Preview</h1>
+ <iframe src="/resume/resume.html"></iframe>
+{{ end }}
diff --git a/static/resume b/static/resume
-Subproject 685c0a209b6bdb468e68045e3d5a74f34037def
+Subproject 2e88321504df2fe0f3427f19bb84251926bb314
diff --git a/static/resume.pdf b/static/resume.pdf
new file mode 100644
index 0000000..5f58532
--- /dev/null
+++ b/static/resume.pdf
Binary files 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);
+}