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

Khosrow Moossavi
03.06.2018 4426c889fd5477117b900c33f1f96e110edf138d
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 }}