site/themes/rb/layouts/dev/section.html

13 lines
226 B
HTML

{{ define "main" }}
{{ .Content }}
<h3>Projects</h3>
<ul id="posts">
{{ range .Pages }}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
<small>{{ .Summary }}</small>
</li>
{{ end }}
</ul>
{{ end }}