24 lines
		
	
	
		
			971 B
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			971 B
		
	
	
	
		
			HTML
		
	
	
| {{ define "content" }}
 | |
| <article class="homepage-content h-entry e-content">
 | |
|   <!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
 | |
|   {{.Content}}
 | |
| </article>
 | |
| <section class="h-feed">
 | |
|   {{ if .Site.Params.homepageSectionTitle }}
 | |
|   <h2>
 | |
|     <a class="u-url" href="{{ .Site.BaseURL }}"><span class="p-name">{{ .Site.Params.homepageSectionTitle }}</span></a>
 | |
|     <a rel="alternate" type="application/rss+xml" href="index.xml"><i class="fa fa-rss"></i></a>
 | |
|   </h2>
 | |
|   {{ end }}
 | |
|   <!-- Note that .Pages is the same as .Site.RegularPages on the homepage template. -->
 | |
|   {{ range $index, $page := (.Paginate (where (where .Site.RegularPages "Type" "in" site.Params.mainSections) ".Params.hidden" "!=" "true" )).Pages }}
 | |
|   {{ if ne $index 0 }}
 | |
|   {{ end }}
 | |
|   {{ .Render "summary" }}
 | |
|   {{ end }}
 | |
| </section>
 | |
| {{ end }}
 | |
| {{ define "content-footer" }}
 | |
| {{ partial "webmentions.html" . }}
 | |
| {{ partial "paginator.html" .Paginator }}
 | |
| {{ end }} |