coopcloud.tech/themes/coopcloud.tech/layouts/_default/list.html

20 lines
708 B
HTML
Raw Normal View History

2021-01-09 18:24:31 +00:00
{{ define "main" }}
2021-07-06 22:37:55 +00:00
<div class="blog-archive">
<h1 class="title is-uppercase is-size-2">BLOG</h1>
<hr>
{{ range .Pages.ByPublishDate.Reverse }}
<div class="blog-listing">
<img src="{{ with .Params.image }}{{ . }}{{ end }}" alt="">
<div class="text">
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
{{/* partial "metadata.html" . */}}
<p class="summary block has-text-weight-light is-size-4">
{{ .Summary }}
</p>
</div>
</div>
<hr>
{{ end }}
</div>
2021-01-09 18:24:31 +00:00
{{ end }}