inkletblot-com-v3/layouts/_default/single.html

25 lines
659 B
HTML

{{ define "main" }}
<article class="single">
<h1 class="single__title">{{ .Title }}</h1>
<time class="single__date" datetime="{{ .Date.Format " 2006-01-02" }}">{{ .Date.Format "02-01-2006" }}</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>
{{ partial "others.html" . }}
{{ end }}