blob: 6012d948b50a7ec6ce947d9428088efebcd4373a (
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="">
<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">
<p class="flow-text">{{ .Content }}</p>
</section>
</article>
</main>
</div>
{{ partial "footer.html" . }}
|