34c99a209acc9f265d7c63ea26b07f9bf9fd0fdd
[editorial.git] / index.hbs
1 {{!< default}}
2 {{!-- The tag above means: insert everything in this file
3 into the {body} of the default.hbs template --}}
4
5 {{!-- Main --}}
6 <main id="main">
7
8 {{!-- Featured Post --}}
9 {{#get "posts" filter="featured:true" limit="1" as |featured_post|}}
10 {{#foreach featured_post}}
11 <article class="post featured">
12 <header class="major">
13 <span class="date">{{date format="MMM D, YYYY"}}</span>
14 <h2><a href="{{url}}">{{title}}</a></h2>
15 <p>{{excerpt words="44"}}</p>
16 </header>
17 {{#if feature_image}}
18 <a href="{{url}}" class="image main"><img src="{{img_url feature_image}}" alt="{{title}}" /></a>
19 {{/if}}
20 <ul class="actions special">
21 <li><a href="{{url}}" class="button large">Full Story</a></li>
22 </ul>
23 </article>
24 {{/foreach}}
25 {{/get}}
26
27 {{!-- Posts --}}
28 <section class="posts">
29
30 {{#foreach posts}}
31 <article>
32 <header>
33 <span class="date">{{date format="MMM D, YYYY"}}</span>
34 <h2><a href="{{url}}">{{title}}</a></h2>
35 </header>
36 {{#if feature_image}}
37 <a href="{{url}}" class="image fit"><img src="{{img_url feature_image}}" alt="{{title}}" /></a>
38 {{/if}}
39 <p>{{excerpt words="33"}}</p>
40 <ul class="actions special">
41 <li><a href="{{url}}" class="button">Full Story</a></li>
42 </ul>
43 </article>
44 {{/foreach}}
45
46 </section>
47
48 {{!-- Pagination --}}
49 {{pagination}}
50
51 </main>