This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
coopcloud.tech/themes/coopcloud.tech/layouts/_default/list.html

20 lines
783 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">
2021-07-06 22:39:31 +00:00
<a href="{{ .RelPermalink }}"><img src="{{ with .Params.image }}{{ . }}{{ end }}" alt=""></a>
2021-07-06 22:37:55 +00:00
<div class="text">
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
2021-07-15 13:19:01 +00:00
<small class="post-date">{{ .PublishDate.Format "January 2, 2006" }}</small>
2021-07-06 22:37:55 +00:00
<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 }}