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

index.hbs - github.com/roryg/ghostwriter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8daaab1d0a5547c5969e1f582e9a1595e3d6a4bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{!< default}}

<div id="latest-post" class="container">
    {{#foreach posts}}
        {{#if @first}}
            {{> post-content}}
        {{/if}}
    {{/foreach}}
</div>

<div id="post-index" class="container">
    <ol class="post-list">
        {{> loop}}
    </ol>

    <div class="post-navigation">
        {{pagination}}
    </div>
</div>