summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: 9f4f6034985f1849d1e8b31c18e8cda38cb88cd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ partial "head.html" . }}
<body class="{{ .Site.Params.themeColor }}">

{{ 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>
</div>

  </body>
</html>