forked from TryGhost/Headline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.hbs
26 lines (22 loc) · 785 Bytes
/
index.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{!< default}}
<main class="gh-main gh-outer">
<div class="gh-inner">
<section class="gh-pagehead">
<h1 class="gh-pagehead-title">Neueste</h1>
</section>
<div class="gh-topic gh-topic-grid">
<div class="gh-topic-content gh-feed">
{{#match pagination.page 2}}
{{#get "posts" include="authors" [email protected]_per_page as |recent|}}
{{#foreach recent}}
{{> "loop-grid"}}
{{/foreach}}
{{/get}}
{{/match}}
{{#foreach posts}}
{{> "loop-grid" has_large_post=false}}
{{/foreach}}
</div>
</div>
</div>
</main>