21 lines
413 B
HTML
21 lines
413 B
HTML
{{ partial "head-blog.html" . }}
|
|
{{ partial "navbar.html" . }}
|
|
{{ partial "header.html" . }}
|
|
|
|
<article>
|
|
<div class="content">
|
|
{{ if ne .Lastmod .Date }}<div class="post-time-date">{{ .Lastmod.Format "2006-01-02" }}</div>{{ end }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
</div>
|
|
</article>
|
|
|
|
{{ partial "comment.html" . }}
|
|
|
|
</div>
|
|
|
|
{{ partial "particles.html" . }}
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
</html>
|