mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
b6538532f4
The skeletons are used when creating new sites and themes with the CLI. Closes #11358
7 lines
174 B
HTML
7 lines
174 B
HTML
{{ define "main" }}
|
|
{{ .Content }}
|
|
{{ range site.RegularPages }}
|
|
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
|
{{ .Summary }}
|
|
{{ end }}
|
|
{{ end }}
|