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

index.html « layouts - github.com/meibenny/elephants.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55be4044d71011f2dd51453d3a132c280347b1a9 (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 class=posts_listing>
      {{ range .Site.RegularPages.ByPublishDate.Reverse }}
        <div id="posts">
          <div id=date class="date-time-title date-time-font">
              <time>{{ .Date.Format (.Site.Params.dateform | default "Jan 02 2006") }}</time>
          </div>
          <div class="date-time-title post">
            <a href="{{ .Permalink }}">{{ .Title }}</a>
          </div>
        </div>
      {{ end }}
    </ul>
  </section>

{{ partial "footer.html" . }}