27 lines
587 B
HTML
27 lines
587 B
HTML
|
{{ define "main" }}
|
||
|
<main>
|
||
|
<article>
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
<time datetime="{{ .Date.Format "2006-01-02T15:04:05" }}">{{ .Date.Format "02.01.2006 15:04" }}</time>
|
||
|
<div>
|
||
|
{{ .Content }}
|
||
|
</div>
|
||
|
{{ with .Params.tags }}
|
||
|
<div>
|
||
|
<ul id="tags">
|
||
|
{{ range . }}
|
||
|
<li><a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a></li>
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
{{ with .Site.DisqusShortname }}
|
||
|
<div>
|
||
|
{{ template "_internal/disqus.html" . }}
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
</article>
|
||
|
</main>
|
||
|
{{ partial "sidebar.html" . }}
|
||
|
{{ end }}
|