hugo-theme-hyde-hyde/layouts/_default/single.html

16 lines
304 B
HTML
Raw Normal View History

2014-05-23 20:44:37 +00:00
{{ template "theme/partials/head.html" . }}
2014-04-26 22:25:13 +00:00
<body>
2014-05-23 20:44:37 +00:00
{{ template "theme/partials/sidebar.html" . }}
2014-04-26 22:25:13 +00:00
<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>