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

index.html « layouts - github.com/kdevo/osprey-delight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f050634467434b62ea5007e3fae4d7fd264cfeb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ partial "header.html" . }}

<section id="content">
    <ul class="posts_list">
        {{ range first 10 .Data.Pages }}
        {{ if eq .Type "post" }}
            <article>
                <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
                <div id=sub-header>
                  {{ .Date.Format (.Site.Params.dateform | default "January 2006") }} · {{ .ReadingTime }} minute read
                </div>
            </article>
        {{ end }}
        {{ end }}
    </ul>
</section>

{{ partial "footer.html" . }}