diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2026-05-25 19:12:22 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2026-05-25 19:12:22 -0400 |
| commit | 9fa6d931ff669b51b81e0fab9297195acc0e0137 (patch) | |
| tree | 41eabf53a20fcc5076962cf64f4e28f6ec9c6607 | |
| parent | 544ced362819ae9bd2abd9c12480f76945b368aa (diff) | |
| download | samanthony.xyz-9fa6d931ff669b51b81e0fab9297195acc0e0137.zip | |
remove <hr>s, update css
| -rw-r--r-- | layouts/_partials/footer.html | 1 | ||||
| -rw-r--r-- | layouts/articles/page.html | 25 | ||||
| m--------- | themes/aoidh | 0 |
3 files changed, 13 insertions, 13 deletions
diff --git a/layouts/_partials/footer.html b/layouts/_partials/footer.html index cd01a54..004204c 100644 --- a/layouts/_partials/footer.html +++ b/layouts/_partials/footer.html @@ -1,4 +1,3 @@ -<hr> <p>{{ partial "copyright.html" . }}</p> <p> Powered by diff --git a/layouts/articles/page.html b/layouts/articles/page.html index 5fe8cf4..22a1ac4 100644 --- a/layouts/articles/page.html +++ b/layouts/articles/page.html @@ -1,15 +1,16 @@ {{ define "main" }} -<h1 class="title">{{ .Title }}</h1> -<p> - {{- partial "date.html" .Date -}} - {{- if gt .Lastmod .Date -}} - — modified {{ partial "date.html" .Lastmod }} - {{- end -}} - <br> - {{- if .Page.GetTerms "tags" }} - Tags: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) -}}. - {{- end }} -</p> -<hr> +<div class="article-header"> + <h1 class="title">{{ .Title }}</h1> + <p> + {{- partial "date.html" .Date -}} + {{- if gt .Lastmod .Date -}} + — modified {{ partial "date.html" .Lastmod }} + {{- end -}} + <br> + {{- if .Page.GetTerms "tags" }} + Tags: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) -}}. + {{- end }} + </p> +</div> {{ .Content }} {{ end }} diff --git a/themes/aoidh b/themes/aoidh -Subproject ad37bcfc2310d2af386fb3b41fcfbf4852fc2a9 +Subproject edb275a2f6008dd02a41da927f8c1fde40e1ced |