26 lines
650 B
HTML
26 lines
650 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<article class="blog-post">
|
|
<h1 class="blog-header">{{ .Title }}</h1>
|
|
<sub><small><time>{{ .Date.Format "02.01.2006 15:04" }}</time></small></sub>
|
|
<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>
|
|
{{ end }}
|