diff options
| author | Julian Hurst <ark@mansus.space> | 2025-09-29 18:57:57 +0200 |
|---|---|---|
| committer | Julian Hurst <ark@mansus.space> | 2025-09-29 18:58:26 +0200 |
| commit | 1d439c8d17e881b18b8cff74864b7ae76638e9ed (patch) | |
| tree | c16d891f1e234ac06856b03ab21c99857a11f79f /body.html | |
| parent | e3552f592ba5bce3fa3243166679fed986b6b949 (diff) | |
| download | ssg-master.tar.gz | |
Diffstat (limited to 'body.html')
| -rw-r--r-- | body.html | 15 |
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> |
