-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.hbs
32 lines (25 loc) · 822 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
27
28
29
30
31
32
{{!< default}}
{{!-- The tag above means: insert everything in this file
into the {body} of the default.hbs template --}}
{{> header}}
<main class="main_minimal" role="main">
<article class="article__wrapper" role="article">
<header>
<h1 class="post__title">
The Third Attempt
</h1>
</header>
<section class="post__content-wrapper">
<div class="post__content">
Most of my ideas come from showers thoughts, so I simply jot them down without thinking too hard.
I also publish write ups about the things that I have been building technologically.
</div>
</section>
</article>
<br />
{{#foreach posts}}
{{> card}}
{{/foreach}}
</main>
{{pagination}}
{{> footer}}