27 lines
786 B
HTML
27 lines
786 B
HTML
|
{{ partial "header" . }}
|
||
|
{{ partial "nav" . }}
|
||
|
{{ partial "sidebar" . }}
|
||
|
|
||
|
<section class="page-content">
|
||
|
<div class="container">
|
||
|
<article>
|
||
|
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
|
||
|
<div class="tags-list">
|
||
|
{{ if .Params.tags }}
|
||
|
{{ partial "tags" .Params.tags }}
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
<span class="article-date">{{ i18n "publishedIn" }} <a href="{{ .CurrentSection.URL }}">{{ .CurrentSection.Name }}</a> {{ i18n "on" }} {{ .Date.Format "2006-01-02" }}. {{ i18n "readingTime" }} {{ i18n "readingTimeValue" .ReadingTime }}.</span>
|
||
|
|
||
|
<div class="post-content">
|
||
|
{{ .Content }}
|
||
|
{{ if .Site.Params.Info.related }}
|
||
|
<div class="related">{{ partial "related" . }}</div>
|
||
|
</div>
|
||
|
</article>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
{{ partial "footer" . }}
|