-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.njk
28 lines (28 loc) · 864 Bytes
/
index.njk
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
---
title: Home
layout: layouts/home.njk
tags:
- nav
navtitle: Home
---
<div class="page__hero">
<div class="wrapper">
<img src="_lib/images/fc-profile.jpg" />
<h1>Hello! I'm Joel</h1>
<p>I’m a passionate web developer from Melbourne, Australia – currently working at <a
href="https://raak.com.au" target="_blank">Raak</a>.</p>
<p>I build beautiful websites.</p>
<a href="https://twitter.com/Joel_Krause?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-dnt="true"
data-show-count="false" data-size="large">Follow @Joel_Krause</a>
</div>
</div>
<div class="wrapper">
<div class="posts__cards">
<header>
<h2>Latest Posts</h2>
<a href="/posts" class="button">See All Posts</a>
</header>
{% set postslist = collections.posts | head(-5) %}
{% include "postslist.njk" %}
</div>
</div>