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

Khosrow Moossavi
15.24.2018 11c01083232b7b53317fe3665f9e44c6c5482065
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{{ define "title" }}
  {{ .Title }} ยท {{ .Site.Title }}
{{ end }}
{{ define "content" }}
  <section class="container post">
    <article>
      <header>
        <div class="post-title">
          <h1 class="title">{{ .Title }}</h1>
        </div>
        <div class="post-meta">
          <span class="posted-on">
            <i class="far fa-calendar"></i>
            <time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
              {{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
            </time>
          </span>
          <span class="reading-time">
            <i class="far fa-clock"></i>
            {{ i18n "readingTime" .ReadingTime }}
          </span>
        </div>
      </header>
 
      <div>
        {{ .Content }}
      </div>
 
      <footer>
        {{ partial "posts/disqus" . }}
      </footer>
    </article>
 
    {{ partial "posts/math" . }}
  </section>
{{ end }}