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/single.html

19 lines
701 B
HTML

{{ define "main" }}
<article class="blog-post">
<div class="container">
<figure>
<img src="{{ with .Params.image }}{{ . }}{{ end }}" alt="" class="hero">
<figcaption>{{ .Params.imageCredit }}</figcaption>
</figure>
<h1 class="title is-uppercase">{{ .Title }}</h1>
<div class="post-metadata">
<p class="post-date">{{ .PublishDate.Format "January 2, 2006" }}</p>
<p class="reading-time">Reading time: {{ .ReadingTime }} minutes</p>
</div>
<hr>
<div class="content">{{ .Content }}</div>
<hr>
</div>
</article>
{{ end }}