Include front matter in home and list pages if provided

Contents in `_index.md` files will be used if the relevant files
exist, per hugo documentation:
https://gohugo.io/templates/lists/#add-content-and-front-matter-to-list-pages
This commit is contained in:
Ori 2020-02-18 23:49:01 -05:00
parent 0e1211ab6f
commit adcfdb48b8
3 changed files with 7 additions and 1 deletions

View File

@ -12,6 +12,8 @@
<h1 class="page-title">All articles</h1>
{{ end }}
{{ with .Content }}{{ . }}{{ end }}
<ul class="posts">
{{- range .Data.Pages -}}
{{- if (in (.Site.Params.excludedTypes | default (slice "page")) .Type) -}}

View File

@ -6,7 +6,9 @@
<div class="container wrapper tags">
{{ partial "head.html" . }}
<h1 class="page-title">All tags</h1>
<h1 class="page-title">{{ .Title }}</h1>
{{ with .Content }}{{ . }}{{ end }}
{{ $biggest := 1 }}
{{ $smallest := 1 }}

View File

@ -5,6 +5,8 @@
<div class="container wrapper">
{{ partial "head.html" . }}
{{ with .Content }}{{ . }}{{ end }}
<div class="recent-posts section">
<h2 class="section-header">
Recent posts