5aab5b03ab
- Change indentation to 2 spaces to match convention - Don't indent <body> and <head> as per convention
19 lines
No EOL
485 B
HTML
19 lines
No EOL
485 B
HTML
{{ partial "head.html" . }}
|
|
<body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}">
|
|
{{ partial "sidebar.html" . }}
|
|
|
|
<div class="content container">
|
|
<div class="post">
|
|
<h1>{{ .Title }}</h1>
|
|
<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
|
|
{{ .Content }}
|
|
</div>
|
|
|
|
{{ if .Site.Params.disqusShortname }}
|
|
<h2>Comments</h2>
|
|
{{ partial "disqus" . }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
</body>
|
|
</html> |