-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.hbs
executable file
·52 lines (43 loc) · 2.3 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{{!< default}}
{{! The comment above "< default" means - insert everything in this file into
the {body} of the default.hbs template, which contains our header/footer. }}
{{! The big featured header on the homepage, with the site logo and description }}
<header id="site-head" style="background-image: url('/assets/img/scales.png')">
<div class="vertical">
<div id="site-head-content" class="inner">
<a id="blog-logo" href="{{@blog.url}}"><img style="width:280px;" src="/assets/img/ape.png" alt="Blog Logo" /></a>
<div class="tools">
<a href="/rss/"><img src="/assets/img/rss.png" class="tool"></a>
<a href="https://www.linkedin.com/profile/view?id=6939379"><img src="/assets/img/linkedin.png" class="tool"></a>
<a href="http://twitter.com/adamneilson"><img src="/assets/img/twitter.png" class="tool"></a>
<a href="http://github.com/adamneilson"><img src="/assets/img/github.png" class="tool"></a>
<a href="https://www.onename.io/aan"><img src="/assets/img/btc.png" class="tool"></a>
</div>
</div>
</div>
</header>
<div id="whoami">
<h1>Whoami</h1>
<h2 class="blog-description">CTO & Co-founder of <a href="http://junkey.com">Junkey</a>, founder of <a href="http://opuss.com">Opuss</a>, dad, geek & tinkerer. Often found knee deep in code, sometimes cranking oil paint around a canvas, occasionally changing nappies and very occasionally wearing matching socks.</h2>
</div>
{{! The main content area on the homepage }}
<main class="content" role="main">
{{! Each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<span class="post-meta"><time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time>
{{#if tags}} on {{tags}} {{/if}}</span>
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
</header>
<section class="post-excerpt">
<p> {{content words="50"}}
<br />
<a href="{{url}}"><div class="readmore-btn">More</div></a>
</p>
</section>
</article>
{{/foreach}}
{{!! After all the posts, we have the previous/next pagination links }}
{{pagination}}
</main>