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

list.html « _default « layouts - github.com/darshanbaral/mero.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6fc8cdfb5556bbe909339ff5ec03c2d5bb25144d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "main" }}
<main>
    <h1>{{ .Title }}</h1>
    <table class="table table-striped">
        {{ range .Pages }}
        <tr>
            <td>{{ .Date.Format "2006-Jan-02" }}</td>
            <td>
                <a href="{{.Permalink}}">{{.Title}}</a>: {{ .Description }}
            </td>
        </tr>
        {{ end }}
    </table>
</main>
{{ partial "footer.html" . }}
{{ end }}