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

tag.html « indexes « layouts - github.com/AlexFinn/simple-a.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42beea2d1b9fe82e5632ad687fb7ba1e172570c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ template "theme/chrome/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 "theme/chrome/footer.html" . }}