Refactor templates and partials

This commit is contained in:
Alex Shpak
2018-11-25 13:30:25 +01:00
parent 461aafe995
commit 76c251066f
11 changed files with 57 additions and 33 deletions
+1 -1
View File
@@ -16,4 +16,4 @@
{{ template "_internal/google_analytics_async.html" . }}
</body>
</html>
</html>
+6 -4
View File
@@ -5,14 +5,16 @@
<h2>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</h2>
<h5>{{ .Date.Format "January 2, 2006" }}</h5>
<h5>
<strong>{{ .Date.Format "January 2, 2006" }}</strong>
</h5>
<p>
{{ .Summary }}
{{- .Summary -}}
{{ if .Truncated }}
<a href="{{ .Permalink }}">...</a>
<a href="{{ .Permalink }}">...</a>
{{ end }}
</p>
</article>
{{ end }}
{{ template "_internal/pagination.html" . }}
{{ end }}
{{ end }}
+4 -2
View File
@@ -1,9 +1,11 @@
{{ define "main" }}
<header>
<h1>{{ .Title }}</h1>
<h5>{{ .Date.Format "January 2, 2006" }}</h5>
<h5>
<strong>{{ .Date.Format "January 2, 2006" }}</strong>
</h5>
</header>
<article class="markdown">
{{- .Content -}}
</article>
{{ end }}
{{ end }}