This repository has been archived on 2022-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
boba.best/layouts/_default/services.html

17 lines
245 B
HTML

{{ define "main" }}
<content>
<h1>Services</h1>
<ul>
{{ range .Pages }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ else }}
<li>
No posts yet
</li>
{{ end }}
</ul>
</content>
{{ end }}