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

list.html « _default « layouts - github.com/shankar/hugo-grapes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e8735e3169dd3c1916d0253e894472b74d9ecc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}
<main id="list">
    <div id="posts" class="grape">
	<div class="container">
            <h1>{{ .Title }}</h1>
            <ul>
                {{ range .Site.RegularPages }}
                <li>
                    <a href="{{ .Permalink }}">{{ .Title }}</a>
                    <p>{{ .Render "time-element" }}</p>
		    <p>{{ .Summary }}...</p>
                </li>
                {{ end }}
            </ul>
        </div>
    </div>
</main>
{{ end }}