blob: 44bdae9b322094ef022e5332c5c34d854915ca80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{{ 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>
{{ if .Params.rating }}
<div class="center right">
<i class="material-icons">
{{ range seq .Params.rating }}
star
{{ end }}
{{ range seq (sub 5 (int .Params.rating)) }}
star_border
{{ end }}
</i>
</div>
{{ end }}
<section itemprop="articleBody" class="flow-text">
{{ .Content }}
</section>
</article>
</main>
</div>
</main>
{{ partial "footer.html" . }}
|