single.html 405 B

12345678910111213
  1. {{ define "main" -}}
  2. <div class="post">
  3. <h1>{{ .Title }}</h1>
  4. <time datetime={{ .Date.Format "2006-01-02T15:04:05Z0700" }} class="post-date">{{ .Date.Format "2006-01-02" }} {{ partial "tags.html" .}}</time>
  5. {{ .Content }}
  6. </div>
  7. {{ if .Site.DisqusShortname -}}
  8. <hr>
  9. <h2>Comments</h2>
  10. <script defer src="https://cdn.commento.io/js/commento.js"></script>
  11. <div id="commento"></div>
  12. {{- end }}
  13. {{- end }}