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

page-item.html « post « partials « layouts - github.com/chipsenkbeil/grid-side.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd54be238e499d8bc218ca77b020fca4291cda74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="page-item-container">
    {{ with .Params.image }}
        <img src="{{ . }}" class="page-item-image"></img>
    {{ end }}
    <div class="page-item-content">
        <header>
            <time class="page-item-date">{{ .Date.Format "Mon Jan 06, 2006" }}</time>
            <h2 class="page-item-title">{{ .Title }}</h2>
        </header>
        <p class="page-item-summary">{{ .Summary }}</p>
        <a href="{{ .Permalink }}" class="page-item-btn {{ if .Params.redirect }}page-item-btn-red{{ end }}">
            {{ if .Params.redirect }}Redirect{{ else }}Read More{{ end }}
        </a>
        <footer>
            {{ partial "extra/categories.html" . }}
            <span class="separator">|</span>
            {{ partial "extra/tags.html" . }}
        </footer>
    </div>
</div>