binario/layouts/_default/single.html

12 lines
364 B
HTML
Raw Normal View History

2018-02-11 06:25:05 +00:00
{{ partial "header.html" . }}
<div class="main">
2018-02-11 06:55:56 +00:00
<div class="single block">
2018-02-11 06:25:05 +00:00
<article class="post">
<h1 class="post__title">{{ .Title }}</h1>
<div class="post__content">{{ .Content }}</div>
2018-02-23 12:54:37 +00:00
{{ if .Params.tags }}{{ partial "post_tags.html" . }}{{ end }}
2018-02-11 06:25:05 +00:00
</article>
</div>
2018-02-23 13:01:12 +00:00
{{ partial "comments.html" . }}
2018-02-11 06:25:05 +00:00
</div>
{{ partial "footer.html" . }}