diff --git a/themes/briar/layouts/_default/list.html b/themes/briar/layouts/_default/list.html index 3f1ed3326f497f4350637b28378f5661d4c36ad8..8b9ae4ec89310251903c677c5582051f45e2b559 100644 --- a/themes/briar/layouts/_default/list.html +++ b/themes/briar/layouts/_default/list.html @@ -1,13 +1,8 @@ {{ define "main" }} -<h1>{{ with .Title }} {{ . }} {{ else }} {{ .Site.Title }} {{ end }}</h1> +<h2>{{ with .Title }} {{ . }} {{ else }} {{ .Site.Title }} {{ end }}</h2> +<p><strong>Latest News:</strong> {{ range first 1 .Pages.ByDate.Reverse }} -<h3 itemprop="headline" class="blog-post-title"> <a href="{{.Permalink}}">{{.Title}}</a> -</h3> -<p class="blog-post-meta">{{.Date.Format "2006-01-02"}} -{{ if (isset .Params "author") }} -by {{ markdownify .Params.author }} -{{ end }} </p> {{ end }} {{ .Content }}