summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
diff options
context:
space:
mode:
authormjkwiatkowski <mati.rewa@gmail.com>2025-12-21 12:28:33 +0100
committermjkwiatkowski <mati.rewa@gmail.com>2025-12-21 12:28:33 +0100
commita96d8ec708500b10cf48298213922b7dc0398d9a (patch)
treec8c180e06bee1e81effb3f8f9085c7edd9093630 /layouts/_default/single.html
parent87370a6c7d891a30d6a50ed66ac98feda5a63817 (diff)
refactor: moved files from themes to layouts and static
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..39c5e26
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,10 @@
+{{ partial "head.html" .}}
+<div class="container">
+ {{ partial "navigation.html" .}}
+</div>
+</div>
+<div class="container">
+ <h2>{{ .Title }}</h2>
+ {{ .Content }}
+</div>
+{{ partial "footer.html" . }}