summaryrefslogtreecommitdiffstats
path: root/layouts/notes/page.html
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-06-26 14:17:30 -0230
committerSam Anthony <sam@samanthony.xyz>2026-06-26 14:17:30 -0230
commit99018e37c3e9a2d84af7d0f55715bb44c3904e13 (patch)
tree440222ac09e3e720546a5b4435026fb8feaf526b /layouts/notes/page.html
parentbe60a99b427940d69da9613a63aa9f9e6367b658 (diff)
downloadsamanthony.xyz-99018e37c3e9a2d84af7d0f55715bb44c3904e13.zip
restructure
Diffstat (limited to 'layouts/notes/page.html')
-rw-r--r--layouts/notes/page.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/layouts/notes/page.html b/layouts/notes/page.html
new file mode 100644
index 0000000..22a1ac4
--- /dev/null
+++ b/layouts/notes/page.html
@@ -0,0 +1,16 @@
+{{ define "main" }}
+<div class="article-header">
+ <h1 class="title">{{ .Title }}</h1>
+ <p>
+ {{- partial "date.html" .Date -}}
+ {{- if gt .Lastmod .Date -}}
+ &mdash; modified {{ partial "date.html" .Lastmod }}
+ {{- end -}}
+ <br>
+ {{- if .Page.GetTerms "tags" }}
+ Tags: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) -}}.
+ {{- end }}
+ </p>
+</div>
+{{ .Content }}
+{{ end }}