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

13 lines
246 B
HTML
Raw Normal View History

2018-10-09 08:25:05 +02:00
{{ define "main" }}
<main class="content" role="main">
2018-10-10 16:56:52 +02:00
<article class="post">
<header>
<h2 class="title">{{ .Title }}</h2>
2018-10-09 08:25:05 +02:00
</header>
2018-10-10 16:56:52 +02:00
<section class="content">
2018-10-09 08:25:05 +02:00
{{ .Content }}
</section>
</article>
</main>
{{ end }}