forked from nikrich/jekyll-slender-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
66 lines (62 loc) · 2.5 KB
/
index.html
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
layout: default
---
<div class="home">
<div class="col col-12">
<div class="col col-3">
<div class="block glass mypic">
<img src="assets/me.jpg"></img>
</div>
</div>
<div class="col col-9">
<div class="block glass">
<div class="block-body">
<h2>Jake Barwell</h2>
<h3>Full Stack Developer / Father / Gamer </h3>
<p class="white-text">
Welcome. I am a web developer who's passion lies in web application security and delivering open source solutions. I graduated from De Montfort University, gaining a 1st class degree with honours in computer security. Since then I have been working for ThinkOn helping to develop their digital offering and on the companys public face <a href='https://www.thinkonglobal.com'>ThinkonGlobal</a>.
</p>
</div>
</div>
</div>
</div>
<div class="col col-12">
{% for port in site.data.portfolio %}
<div class="col col-{{port.width}}">
<div class="block" style="background-image:url(assets/{{port.img}});background-size:cover;background-color:white">
<div class="block-body height-{{port.height}}">
<h2 class="align-bottom-right">
<a class="black-text" href="{{ port.url }}">{{ port.title }}</a>
<p><a class="black-text" href="{{ port.url }}">{{port.desc}}</a></p>
</h2>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="col col-9">
{% for post in site.posts %}
<div class="col col-{{post.width}}">
<div class="block {{post.color}}">
<div class="block-body height-{{post.height}}">
<span class="post-meta white-text">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link white-text" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="col col-3">
<div class="block glass">
<div class="block-body">
<h3 class="margin-bot">Skills</h3>
{% for skill in site.data.skills %}
<span class="post-meta white-text">{{skill.descr}}</span>
<div class="progress margin-bot"><div class="progress-{{skill.xp}}"></div></div>
{% endfor %}
</div>
</div>
</div>
</div>