pi-www-theme-soho/layouts/index.html

27 lines
521 B
HTML
Raw Normal View History

{{ partial "head.html" . }}
2016-03-09 00:15:24 +02:00
<body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}">
2014-04-27 01:25:13 +03:00
{{ partial "sidebar.html" . }}
2014-04-27 01:25:13 +03:00
<div class="content container">
<div class="posts">
{{ range .Data.Pages }}
<div class="post">
<h1 class="post-title">
<a href="{{ .Permalink }}">
{{ .Title }}
</a>
</h1>
<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
{{ .Content }}
</div>
{{ end }}
</div>
2014-06-07 11:57:40 +03:00
</div>
2014-04-27 01:25:13 +03:00
</body>
</html>