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

tag.html « _default « layouts - github.com/AlexFinn/simple-a.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7d8f8f5fbe4985bbbb8f2617f70a108a2295be2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ template "partials/header.html" . }}
    <!-- CONTENT -->
  <div class="tag-list">
      <p id="tag-name">
        <h1>Tag: {{ .Title }}</h1>
      </p>
        {{ range .Data.Pages }}
        <div class="one-post">
          <h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
          <div class="post-time">{{ .Date.Format "January 2 2006" }}</div>
        </div>
        <hr>
        {{ end }}
  </div>

{{ template "partials/footer.html" . }}