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

list.html « _default « layouts - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f0ad6177c98bc404ef55d01a27d651c8ff983ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "main" }}
    <div class="pl-sm-4 ml-sm-5 pt-2">
        <ul>
        {{ range .Pages }}
            <li>
                <time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" | safeHTML }}">
                    {{ .Date.Format "Jan 2, 2006" }}
                </time>
                <a href="{{ .URL | relURL }}">{{ if .Draft }}DRAFT: {{end}}{{ .Title }}</a>
            </li>
        {{ end }}
        </ul>
    </div>
{{ end }}