diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 5 | ||||
| -rw-r--r-- | content/articles/_index.md | 7 | ||||
| -rw-r--r-- | content/creds.md (renamed from content/resume/index.md) | 5 | ||||
| -rw-r--r-- | content/notes/automotive-spreadsheets.md (renamed from content/articles/automotive-spreadsheets.md) | 0 | ||||
| -rw-r--r-- | content/notes/foo.md (renamed from content/articles/foo.md) | 0 | ||||
| -rw-r--r-- | content/notes/header-test.md (renamed from content/articles/header-test.md) | 0 | ||||
| -rw-r--r-- | content/notes/tools-i-use.md (renamed from content/articles/tools-i-use.md) | 0 | ||||
| -rw-r--r-- | content/proj.md (renamed from content/projects/index.md) | 2 | ||||
| -rw-r--r-- | hugo.toml | 12 | ||||
| -rw-r--r-- | layouts/notes/page.html (renamed from layouts/articles/page.html) | 0 | ||||
| -rw-r--r-- | layouts/resume/page.html | 3 |
12 files changed, 9 insertions, 26 deletions
@@ -1,3 +1,2 @@ .hugo_build.lock public/ -static/resume.png @@ -1,6 +1,6 @@ MODS = $(shell git submodule | awk '{print $$2}') -build: fmt ${MODS} static/resume.png +all: fmt ${MODS} hugo build find public -name '*.html' -exec tidy -mqi {} \; @@ -19,9 +19,6 @@ serve: build clean: rm -rf public -static/resume.png: static/resume.pdf - gs -dNOPAUSE -dBATCH -sDEVICE=png16m -r300 -sOutputFile=$@ $< - ${MODS}: git submodule update --init --recursive diff --git a/content/articles/_index.md b/content/articles/_index.md deleted file mode 100644 index bc3438a..0000000 --- a/content/articles/_index.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = 'Articles' -date = 2025-12-23T08:30:00-07:00 -draft = false -+++ - -Tempor est exercitation ad qui pariatur quis adipisicing aliquip nisi ea consequat ipsum occaecat. Nostrud consequat ullamco laboris fugiat esse esse adipisicing velit laborum ipsum incididunt ut enim. Dolor pariatur nulla quis fugiat dolore excepteur. Aliquip ad quis aliqua enim do consequat. diff --git a/content/resume/index.md b/content/creds.md index f193f4e..1133389 100644 --- a/content/resume/index.md +++ b/content/creds.md @@ -1,5 +1,5 @@ +++ -title = 'Résumé' +title = 'Credentials' date = '2026-01-12T16:40:43-05:00' tags = [] draft = false @@ -7,6 +7,3 @@ draft = false - [Résumé PDF →](/resume.pdf) - [University transcript PDF →](/transcript_redacted.pdf) - -# Résumé preview - diff --git a/content/articles/automotive-spreadsheets.md b/content/notes/automotive-spreadsheets.md index caf57fa..caf57fa 100644 --- a/content/articles/automotive-spreadsheets.md +++ b/content/notes/automotive-spreadsheets.md diff --git a/content/articles/foo.md b/content/notes/foo.md index 6300edf..6300edf 100644 --- a/content/articles/foo.md +++ b/content/notes/foo.md diff --git a/content/articles/header-test.md b/content/notes/header-test.md index e401e77..e401e77 100644 --- a/content/articles/header-test.md +++ b/content/notes/header-test.md diff --git a/content/articles/tools-i-use.md b/content/notes/tools-i-use.md index 298c7d3..298c7d3 100644 --- a/content/articles/tools-i-use.md +++ b/content/notes/tools-i-use.md diff --git a/content/projects/index.md b/content/proj.md index bdb80da..66152bd 100644 --- a/content/projects/index.md +++ b/content/proj.md @@ -5,7 +5,7 @@ tags = [] draft = false +++ -| Source code repositories | | +| Git repositories | | | --- | --- | | Self-hosted | [git.samanthony.xyz/](https://git.samanthony.xyz/) | | Sourcehut | [sr.ht/~sma/](https://sr.ht/~sma/) | @@ -21,16 +21,16 @@ unsafe = true weight = 1 [[menus.main]] - name = 'Résumé' - pageRef = 'resume' + name = 'Projects' + pageRef = '/proj' weight = 2 [[menus.main]] - name = 'Articles' - pageRef = '/articles' + name = 'Credentials' + pageRef = 'creds' weight = 3 [[menus.main]] - name = 'Projects' - pageRef = '/projects' + name = 'Notes' + pageRef = '/notes' weight = 4 diff --git a/layouts/articles/page.html b/layouts/notes/page.html index 22a1ac4..22a1ac4 100644 --- a/layouts/articles/page.html +++ b/layouts/notes/page.html diff --git a/layouts/resume/page.html b/layouts/resume/page.html deleted file mode 100644 index 9983b08..0000000 --- a/layouts/resume/page.html +++ /dev/null @@ -1,3 +0,0 @@ -{{ define "main" }} -{{ .Content }} -{{ end }} |