Fork of @spf13's port of Mdo's excellent theme to Hugo https://brendan.abolivier.bzh/

single.html 310B

123456789101112131415
  1. {{ partial "head.html" . }}
  2. <body class="{{ .Site.Params.themeColor }}">
  3. {{ partial "sidebar.html" . }}
  4. <div class="content container">
  5. <div class="post">
  6. <h1>{{ .Title }}</h1>
  7. <span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
  8. {{ .Content }}
  9. </div>
  10. </div>
  11. </body>
  12. </html>