-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-info.hbs
48 lines (43 loc) · 1.51 KB
/
page-info.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
46
47
48
{{!< default}}
<div class="container spacetop">
{{#post}}
<article class="{{post_class}}">
<h1 id="paintBrushBg">Om Beitostølen Live</h1>
<p>
{{excerpt}}
</p>
{{#if feature_image}}
<hr />
<img class="img-fluid" src="{{img_url feature_image}}">
{{/if}}
<section>
<h1 id="paintBrushBg">{{title}}</h1>
<hr />
<div class="row">
{{#get "posts" filter="tags:info" order="title asc" }}
{{#foreach posts }}
<div class="col-md-4">
<div class="card news-card">
{{#if feature_image}}
<a href="{{url}}"><img
src="{{img_url feature_image size="m"}}"
class="card-img-top"
alt="..."/></a>
{{/if}}
<div class="card-body">
<a href="{{url}}"><h5 class="card-title">{{title}}</h5></a>
<p class="card-text bl-card-text">{{excerpt}}</p>
</div>
</div>
</div>
{{/foreach}}
{{/get}}
</div>
</section>
<p>
<hr />
{{content}}
</p>
</article>
{{/post}}
</div>