summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: e5ed9604a913fbd8166e54e4fc5b1938306e8c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ partial "header.html" . }}

  <main role="main">
    <article itemscope itemtype="http://schema.org/BlogPosting">
      <h1 class="entry-title" itemprop="headline">{{ .Title }}</h1>
      <span class="entry-meta">
        <time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time>
      </span>
      <section itemprop="entry-text">
        {{ .Content }}
      </section>
    </article>
  </main>

{{ partial "footer.html" . }}