pi-www-theme-soho/layouts/_default/single.html

16 lines
304 B
HTML

{{ template "theme/partials/head.html" . }}
<body>
{{ template "theme/partials/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>
</div>
</body>
</html>