diff options
| author | Julian Hurst <ark@mansus.space> | 2025-09-29 18:50:00 +0200 |
|---|---|---|
| committer | Julian Hurst <ark@mansus.space> | 2025-09-29 18:50:00 +0200 |
| commit | e3552f592ba5bce3fa3243166679fed986b6b949 (patch) | |
| tree | a0eca31771a17dc955d769862d7bdd12d8100f0c /index.html | |
| download | ssg-e3552f592ba5bce3fa3243166679fed986b6b949.tar.gz | |
Initial commit
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..d353e18 --- /dev/null +++ b/index.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> |
