This repository has been archived on 2021-09-01. You can view files and clone it, but cannot push or open issues or pull requests.
theme-geeklab/layouts/_default/single.html

14 lines
300 B
HTML
Raw Normal View History

2018-10-09 08:25:05 +02:00
{{ define "main" }}
<article class="post">
<header class="post-header">
2018-12-22 23:40:39 +01:00
<h1 class="post-header__title">{{ .Title }}</h1>
</header>
<div class="post-content">
{{ .Content }}
</div>
{{ if eq .Section "post" }}
{{ partial "article_footer.html" . -}}
{{ end }}
</article>
2018-10-09 08:25:05 +02:00
{{ end }}