-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.hbs
45 lines (40 loc) · 1.26 KB
/
home.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{{!< default}}
<div class="home-page">
{{> jumbotron }}
{{> social-links }}
<div class="posts">
<div class="container">
<h2 class="posts-header">Events, articles, and tutorials from the community</h2>
<section class="events">
{{#get "posts" limit="8" filter="tags:events"}}
{{#if posts}}
<h3 class="section-header"><span><a href="/tag/events">Recent events</a></span></h3>
<div class="row">
{{> posts-list }}
</div>
{{/if}}
{{/get}}
</section>
<section class="articles">
{{#get "posts" limit="8" filter="tags:articles"}}
{{#if posts}}
<h3 class="section-header"><span><a href="/tag/articles">Recent articles</a></span></h3>
<div class="row">
{{> posts-list }}
</div>
{{/if}}
{{/get}}
</section>
<section class="tutorials">
{{#get "posts" limit="8" filter="tags:tutorials"}}
{{#if posts}}
<h3 class="section-header"><span><a href="/tag/tutorials">Recent tutorials</a></span></h3>
<div class="row">
{{> posts-list }}
</div>
{{/if}}
{{/get}}
</section>
</div>
</div>
</div>