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

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

<section id="content">
  <ul>
    <table>
      {{ range .Site.RegularPages.ByPublishDate.Reverse }}
      <tr>
        <td class="post-date-time date-time-font">
          <time>{{ .Date.Format (.Site.Params.dateform | default "Jan 02 2006") }}</time>
        </td>
        <td class="post">
          <a href="{{ .Permalink }}">{{ .Title }}</a>
        </td>
      </tr>
      {{ end }}
    </table>
  </ul>
</section>

{{ partial "footer.html" . }}