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

list.html « _default « layouts - github.com/hadisinaee/avicenna.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a5cd2a4d19b09a15a6cc5e0b512b3bb14bf62e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" }}
this is _default/list.html

<h1>{{ .Title }}</h1>
{{ range .Pages.ByPublishDate.Reverse }}
<p>
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
<a class="summary" href="{{ .RelPermalink }}">
    <p>{{ .Summary }}</p>
</a>
</p>
{{ end }}
{{ end }}