websites_sum7-eu/layouts/_default/single.html

18 lines
382 B
HTML
Raw Normal View History

2018-08-31 01:18:19 +02:00
{{ partial "header.html" . }}
{{ $baseurl := .Site.BaseURL }}
<section id="content" role="main">
{{ if eq .Type "post"}}
<section class="entry-meta">
<span class="post-date">{{ .Date.Format "Jan 2, 2006" }}</span>
</section>
{{ end }}
<article>
{{ .Content }}
</article>
{{ if eq .Type "post"}}
<div class="clearfix"></div>
<hr>
{{ end }}
</section>
{{ partial "footer.html" . }}