home.html (319B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
{{ define "main" }}
{{ partial "cover.html" . }}
{{ if .Title }}
<h1 class="post-title">
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
</h1>
{{ end }}
{{ if .Content }}
<div class="index-content {{ if .Params.framed -}}framed{{- end -}}">
{{ .Content }}
</div>
{{ end }}
{{ end }}
|