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

taxonomy.html « _default « layouts - github.com/meibenny/elephants.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2004b44112b97280b49c2101d9b5b39d842752f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ partial "header.html" . }}

<section id="content">
  <ul>
    <div id="posts">
      {{ range .Pages.ByPublishDate.Reverse }}
        <div class="post-container">
 	      <div class="date-time-title date-time-font">
		    <time>{{ .Date.Format (.Site.Params.datefrom | default "Jan 02 2006") }}</time>
          </div>
          <div class="date-time-title post">
		    <a href="{{ .Permalink }}">{{ .Title }}</a>
		  </div>
        </div>
      {{ end }}
	</div>
  </ul>
</section>