Website-Redesign/layouts/index.html

39 lines
1.4 KiB
HTML
Raw Normal View History

2020-08-24 01:48:03 -05:00
{{ define "main" }}
{{/* get all the pages that are regular posts and not pages */}}
{{ $postsDir := .Site.Params.Posts | default (slice "posts" "post") }}
2020-08-24 01:48:03 -05:00
{{ $postsList := where .Site.RegularPages "Section" "in" $postsDir }}
{{/* pagination */}}
{{ range (.Paginate $postsList).Pages }}
<article class="card postlistitem {{ if .Site.Params.discreteCards }}discrete{{ end }}">
<h2>
2020-08-24 01:48:03 -05:00
<a href="{{ .Permalink }}">{{ .Title }}</a>
</h2>
2020-08-24 01:48:03 -05:00
<p class="date">
<span title="Date"></span>
2020-08-24 01:48:03 -05:00
{{ .Date.Format "2006-01-02" }}
{{ if .Params.tags }}
| <!-- Pipe character as visual separator between date and tags-->
<span title="Tags"></span>
{{ range .Params.tags }}
<a href="/tags/{{ . }}">#{{ . }}</a>
{{ end }}
2020-08-24 01:48:03 -05:00
{{ end }}
</p>
{{ if .Site.Params.imageInArticlePreview }}
{{ if .Params.Image }}
<img src="{{ .Params.Image }}" />
{{ end }}
{{end}}
2020-08-24 01:48:03 -05:00
<div class="articlePreview">
{{ .Summary }}
<a href="{{ .Permalink }}">Continue reading </a>
2020-08-24 01:48:03 -05:00
</div>
<hr />
</article>
2020-08-24 01:48:03 -05:00
{{ end }}
{{- partial "paginator.html" . -}}
2020-08-24 01:48:03 -05:00
{{ end }}