15 lines
345 B
HTML
15 lines
345 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<article>
|
|
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
|
|
{{ .Content }}
|
|
</article>
|
|
<ul>
|
|
<!-- Ranges through content/posts/*.md -->
|
|
{{ range .Site.RegularPages }}
|
|
{{- partial "list.html" . -}}
|
|
{{ end }}
|
|
</ul>
|
|
</main>
|
|
{{ end }}
|