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

19 lines
686 B
HTML

{{ define "main" }}
<div class="blog-archive">
<h1 class="title is-uppercase is-size-2">BLOG</h1>
<hr>
{{ range .Pages.ByPublishDate.Reverse }}
<div class="blog-listing">
<a href="{{ .RelPermalink }}"><img src="{{ with .Params.image }}{{ . }}{{ end }}" alt=""></a>
<div class="text">
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
<p class="summary block has-text-weight-light is-size-4">
{{ .Summary }}
</p>
</div>
</div>
<hr>
{{ end }}
</div>
{{ end }}