2019-11-21 04:38:53 +00:00
|
|
|
{{ define "content" }}
|
|
|
|
<article class="homepage-content">
|
|
|
|
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
|
|
|
|
{{.Content}}
|
|
|
|
</article>
|
|
|
|
<!-- Note that .Pages is the same as .Site.RegularPages on the homepage template. -->
|
|
|
|
{{ range first 10 .Pages }}
|
|
|
|
{{ .Render "summary"}}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|