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: 51ac86277932cdd0961a8873265a849684a5bbd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{!< default}}

<div id="latest-post" class="container">
    {{#foreach posts}}
        {{#if @first}}
{{! No indention to prevent handlebars indenting <pre> tag content}}   
{{> post-content}}
        {{/if}}
    {{/foreach}}
</div>

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

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