diff options
| author | Hunter Kvalevog <hunter@kvog.sh> | 2026-06-29 23:15:12 -0500 |
|---|---|---|
| committer | Hunter Kvalevog <hunter@kvog.sh> | 2026-06-29 23:15:12 -0500 |
| commit | a51c9890d2b9720297c72b646c894a11474e8532 (patch) | |
| tree | ceb680b4ec84e07c04266bcf7bc90b6b5caa1036 /layouts/section.html | |
| parent | 531c82359c93f81e40ec2aa6d77b8e0dbd8d4c9e (diff) | |
Diffstat (limited to 'layouts/section.html')
| -rw-r--r-- | layouts/section.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/layouts/section.html b/layouts/section.html new file mode 100644 index 0000000..0b95945 --- /dev/null +++ b/layouts/section.html @@ -0,0 +1,11 @@ +{{ define "main" }} + {{ .Content }} + <table> + {{ range .Pages }} + <tr> + <td><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></td> + </tr> + {{ end }} + </table> +{{ end }} + |