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

12 lines
358 B
HTML

{{ define "main" }}
<article class="blog-post">
<div class="container">
<img src="{{ with .Params.image }}{{ . }}{{ end }}" alt="" class="hero">
<h1 class="title is-uppercase">{{ .Title }}</h1>
<hr>
<div class="content">{{ .Content }}</div>
<hr>
</div>
</article>
{{ end }}