44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
{{ partial "htmlhead" . }}
|
|
<body lang='{{ .Site.Language.Lang | default "en-us" }}' class="is-preload">
|
|
|
|
<!-- Wrapper -->
|
|
<div id="wrapper">
|
|
|
|
{{ partial "header" . }}
|
|
{{ partial "nav" . }}
|
|
|
|
<!-- Main -->
|
|
<div id="main">
|
|
|
|
<!-- Post -->
|
|
<section class="post">
|
|
<header class="major">
|
|
{{ if not .Date.IsZero }}
|
|
<span class="date">{{ .Date.Format (.Site.Params.DateFormat | default "January 2, 2006") }}</span>
|
|
{{ end }}
|
|
<h1>{{ .Title }}</h1>
|
|
<p>{{ .Description }}</p>
|
|
</header>
|
|
{{ if .Params.image }}
|
|
<div class="image main"><img src="{{ .Params.image | relURL }}" alt="" /></div>
|
|
{{ end }}
|
|
{{ .Content }}
|
|
|
|
{{ partial "postcustom" . }}
|
|
|
|
{{ if not (eq .Params.disableComments true) }}
|
|
{{ template "_internal/disqus.html" . }}
|
|
{{ end }}
|
|
</section>
|
|
|
|
</div>
|
|
|
|
{{ partial "footer/index" . }}
|
|
{{ partial "copyright" . }}
|
|
|
|
</div>
|
|
{{ template "_internal/google_analytics.html" . }}
|
|
{{ partial "scripts/index" . }}
|
|
</body>
|
|
</html>
|