single.html 372 B

12345678910111213
  1. {{ partial "header.html" . }}
  2. <main id="content" role="main">
  3. <article itemscope itemtype="http://schema.org/BlogPosting">
  4. <h1 class="p-name entry-title" itemprop="headline name">
  5. <a href="{{ .RelPermalink }}">{{ .Title }}</a></h1>
  6. <div class="e-content entry-content" itemprop="entry-text">
  7. {{ .Content }}
  8. </div>
  9. </article>
  10. </main>
  11. {{ partial "footer.html" . }}