summaryrefslogtreecommitdiff
path: root/body.html
diff options
context:
space:
mode:
authorJulian Hurst <ark@mansus.space>2025-09-29 18:57:57 +0200
committerJulian Hurst <ark@mansus.space>2025-09-29 18:58:26 +0200
commit1d439c8d17e881b18b8cff74864b7ae76638e9ed (patch)
treec16d891f1e234ac06856b03ab21c99857a11f79f /body.html
parente3552f592ba5bce3fa3243166679fed986b6b949 (diff)
downloadssg-master.tar.gz
index.html -> body.htmlHEADmaster
Diffstat (limited to 'body.html')
-rw-r--r--body.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..d353e18
--- /dev/null
+++ b/body.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+<head>
+ {{template "head"}}
+</head>
+<body>
+ {{define "body"}}
+ <h1>My blog</h1>
+ {{range .}}
+ <a href="{{.Path}}">{{.Metadata.Name}}</a>
+ <p>{{.Metadata.Description}}</p>
+ {{end}}
+ {{end}}
+</body>
+</html>