18 lines
382 B
HTML
18 lines
382 B
HTML
|
{{ 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" . }}
|