mirror of https://github.com/luizdepra/hugo-coder.git

Luiz de Prá
04.11.2018 9118a00aeb791f7474d9c1e563083cbb28e596f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{ define "title" }}
  {{ .Title }} · {{ .Site.Title }}
{{ end }}
{{ define "content" }}
  <section class="container post">
    <article>
      <header>
        <h1 class="title">{{ .Title }}</h1>
        <h2 class="date">{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}</h2>
      </header>
 
      <div>
        {{ .Content }}
      </div>
 
      <footer>
        {{ partial "posts/disqus" . }}
      </footer>
    </article>
 
    {{ partial "posts/math" . }}
  </section>
{{ end }}