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

list.html « _default « layouts - gitlab.com/maxlefou/hugo.386.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43fef57506d45cb0e81c71573df662dc359a7343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{ define "main" }}
<article class="row-fluid navmargin">
    <header class="page-header">
        <h1>{{.Title}}</h1>
    </header>
    <!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
    {{.Content}}
</article>
<ul>
<!-- Ranges through content/posts/*.md -->
{{ range .Pages }}
    <li>
        <a href="{{.Permalink}}">
            {{ if eq .Site.GetPage "/posts" }}
                {{.Date.Format "2006-01-02"}} | 
            {{ end }}
            {{.Title}}
        </a>
    </li>
{{ end }}
</ul>
{{ end }}