blob: 330c6fd25941729901d6a0b89b5adcad242a4879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{{ partial "header.html" . }}
<div class="white z-depth-1">
<main role="main" class="container">
<article itemscope itemtype="http://schema.org/BlogPosting" class="section">
<h1 itemprop="headline" class="header">{{ .Title }}</h1>
<span><time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "02.01.2006" }}</time></span>
<section itemprop="articleBody" class="flow-text">
{{ .Content }}
</section>
</article>
</main>
</div>
{{ partial "footer.html" . }}
|