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

16 lines
272 B
HTML
Raw Normal View History

{{ partial "head.html" . }}
2014-04-26 22:25:13 +00:00
<body>
{{ partial "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>