Welcome to mirror list, hosted at ThFree Co, Russian Federation.

single.html « _default « layouts - github.com/diwao/hestia-pure.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e18a1e28daca382e75cc9042a9347c8d7db61d4 (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="ja">
{{ partial "head" . }}
<body>
  <div id="wrap" class="wrap">
    {{ partial "header" . }}
    <main class="main main--single">
      <!-- post -->
      <article class="post" itemscope itemtype="http://schema.org/BlogPosting">
        <h1 class="post__title">{{ .Title }}</h1>
        <p class="post__date">
          <time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" | safeHTML }}">{{ .Date.Format "2006.01.02" }}</time>
        </p>
        <div class="post-content">
          {{ .Content }}
        </div>
      </article>
      <!-- /post -->
      <hr class="post-hr">
      <!-- post-nav -->
      <nav class="post-nav">
        <ol class="pure-g">
          {{ if .NextInSection }}
          <li class="pure-u-1 pure-u-md-1-2 post-nav-prev">
            <a href="{{.NextInSection.Permalink}}">
              <span class="post-nav-label">新しい記事</span>
              <span class="post-nav-title">
                {{ .NextInSection.Title }}
              </span>
            </a>
          </li>
          {{ else }}
          <li class="pure-u-1 pure-u-md-1-2 post-nav-prev">
          </li>
          {{ end }}
          {{ if .PrevInSection }}
          <li class="pure-u-1 pure-u-md-1-2 post-nav-next">
            <a href="{{.PrevInSection.Permalink}}">
              <span class="post-nav-label">古い記事</span>
              <span class="post-nav-title">
                {{ .PrevInSection.Title }}
              </span>
            </a>
          </li>
          {{ else }}
          <li class="pure-u-1 pure-u-md-1-2 post-nav-next">
          </li>
          {{ end }}
        </ol>
        <div class="post-nav-back">
          <a class="pure-button" href="/">記事一覧へ戻る</a>
        </div>
      </nav>
    <!-- /post-nav -->
    </main>
    {{ partial "footer" . }}
  </div>
{{ partial "js" . }}
</body>
</html>