16 lines
359 B
HTML
16 lines
359 B
HTML
{{ define "main" }}
|
|
|
|
<article class="post">
|
|
<header>
|
|
<h1>{{ .Title }}</h1>
|
|
</header>
|
|
<div class="content">
|
|
{{ .Content }}
|
|
</div>
|
|
{{ partial "articleInfoFull.html" . }}
|
|
</article>
|
|
{{ if .Site.DisqusShortname }}
|
|
{{ template "_internal/disqus.html" . }}
|
|
{{ end }}
|
|
|
|
{{ end }} |