-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.hbs
33 lines (29 loc) · 1.01 KB
/
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
27
28
29
30
31
32
33
{{!< default}}
{{# get "posts" slug="home" as |post| }}
{{# post }}
<div class="container">
<div class="grid--up-3">
<div class="grid-item large--one-two">
<div class="padding-bottom--up-3 large--padding--none">
<div class="rte-home">
{{ content }}
</div>
</div>
</div>
<div class="grid-item large--one-two">
<div class="position-relative">
<div class="image-container box-ratio--1080-1349 box-placeholder">
<img src="{{ asset 'avatar.jpg' }}" alt="">
</div>
<div class="position-absolute position-right position-bottom">
<div class="box-accent" style="height: 50px; width: 5px;"></div>
</div>
<div class="position-absolute position-right position-bottom">
<div class="box-accent" style="height: 5px; width: 50px;"></div>
</div>
</div>
</div>
</div>
</div>
{{/ post }}
{{/ get }}