12 lines
326 B
HTML
12 lines
326 B
HTML
{{ define "main" }}
|
|
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
|
|
<!-- TODO: gallery -->
|
|
<div class="content" itemprop="articleBody">
|
|
{{ if (eq .Type "search") }}
|
|
<!-- TODO: search https://gohugo.io/tools/search/ -->
|
|
{{ else }}
|
|
{{ .Content }}
|
|
{{ end }}
|
|
</div>
|
|
</article>
|
|
{{ end }} |