Add posibility to change timeline title and to decide post type

This commit is contained in:
2021-02-16 18:55:53 +01:00
parent 923649e6ca
commit 8809093f97

View File

@@ -1,10 +1,11 @@
<section class="container list"> <section class="container list">
<h1 class="title"> <h1 class="title">
Projects {{ (.Site.Params.timelineTitle | default "Posts") }}
</h1> </h1>
<ul> <ul>
{{ range where .Paginator.Pages "Section" "ne" "" }} {{ range where .Paginator.Pages "Type" "eq" (.Site.Params.timelineType | default "posts") }}
<li> <li>
<span class="date">{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}</span> <span class="date">{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}</span>
<a class="title" href="{{ .Params.ExternalLink | default .RelPermalink }}">{{ .Title }}</a> <a class="title" href="{{ .Params.ExternalLink | default .RelPermalink }}">{{ .Title }}</a>
</li> </li>