summaryrefslogtreecommitdiffstats
path: root/layouts/page.html
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-04-04 15:30:33 +0200
committerDanilo M. <danix@danix.xyz>2026-04-04 15:30:33 +0200
commit799bd2304a82d35991876d42fc32a8b8be978da1 (patch)
tree77373500f6cb733f3bc490dc7fe71db8bc6a7fa8 /layouts/page.html
downloaddanixxyz-theme-799bd2304a82d35991876d42fc32a8b8be978da1.tar.gz
danixxyz-theme-799bd2304a82d35991876d42fc32a8b8be978da1.zip
initial theme setup.
Diffstat (limited to 'layouts/page.html')
-rw-r--r--layouts/page.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/layouts/page.html b/layouts/page.html
new file mode 100644
index 0000000..7e286c8
--- /dev/null
+++ b/layouts/page.html
@@ -0,0 +1,10 @@
+{{ define "main" }}
+ <h1>{{ .Title }}</h1>
+
+ {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
+ {{ $dateHuman := .Date | time.Format ":date_long" }}
+ <time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
+
+ {{ .Content }}
+ {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
+{{ end }}