-
Notifications
You must be signed in to change notification settings - Fork 9
/
project.hbs
32 lines (25 loc) · 859 Bytes
/
project.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">
Projects Archive
</h1>
</header>
<section class="post__content-wrapper">
<div class="post__content">
I start a lot of very random projects. I build some of them for my daily use, but most projects I start are either
never finished or replaced by a new idea. This is that dark corner where I stack most of my projects.
</div>
</section>
</article>
<br />
{{#foreach posts}}
{{> card}}
{{/foreach}}
</main>
{{pagination}}
{{> footer}}