blob: e6be8ee268f7ed39a211eeb53752af518d0046d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{{ partial "header.html" . }}
<main role="main">
<div class="white z-depth-1">
<main role="main" class="container">
<article itemscope itemtype="http://schema.org/BlogPosting" class="section">
{{ if .Params.image }}
<img src="/images/{{ .Params.image }}" style="width: 100%;">
{{ end }}
<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>
</main>
{{ partial "footer.html" . }}
|