-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (62 loc) · 1.86 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
67
68
69
70
71
72
---
layout: default
---
<div class="home">
<p class="intro">I'm a front-end web developer with a focus on modern
JavaScript workflows and tooling, and a yen for functional programming.</p>
<h1 class="section-heading">Skillset</h1>
{% for skill in site.skills %}
<p class="skill" data-powertip="{{ skill.content | escape }}">
<strong>{{ skill.title }}:</strong>
<em>{{ skill.proficiency }}</em>
</p>
{% endfor %}
<h1 class="section-heading">Open Source</h1>
{% for contrib in site.contribs %}
<div class="contribution">
<h2 class="contribution-heading">
{{ contrib.title }}
<a class="contrib-reference" href="{{ contrib.reference_url }}">
view on GitHub
</a>
</h2>
{{ contrib.content }}
</div>
{% endfor %}
<h1 class="section-heading">Projects</h1>
{% for proj in site.projects %}
<div class="project">
{% if proj.images | length %}
<div class="project-images">
{% for image in proj.images %}
<div class="project-image">
<img src="{{ image | prepend: site.baseurl }}">
</div>
{% endfor %}
</div>
{% endif %}
<ul class="relatedlinks">
<li>
<a href="{{ proj.github_repo_name | prepend: '/' | prepend: site.baseurl }}">
Demo
</a>
</li>
<li>
<a href="https://github.com/{{ site.github_username }}/{{ proj.github_repo_name }}">
Code
</a>
</li>
</ul>
<div class="project-description">
<h2 class="project-heading">{{ proj.title }}</h2>
<ul class="techstack">
{% for tech in proj.tech %}
<li>{{ tech }}</li>
{% endfor %}
</ul>
{{ proj.content }}
</div>
</div>
{% endfor %}
<script src="scripts/main.js"></script>
</div>