-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 985 Bytes
/
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
---
layout: default
title: Kenneth Cachia
---
<section>
<h1>Projects</h1>
{% for project in site.data.projects %}
<article>
<h2><a href="{{project.link}}">{{project.title}}</a></h2>
<p>{{project.description}}</p>
</article>
{% endfor %}
</section>
<section>
<h1>Misc</h1>
{% for other in site.data.others %}
<article>
<h2><a href="{{other.link}}">{{other.title}}</a></h2>
<p>{{other.description}}</p>
</article>
{% endfor %}
</section>
<section>
<h1>About</h1>
<article>
<p>San Francisco — UX Engineer at Google.</p>
<p><s>New York — Frontend Engineer at Squarespace</s>.</p>
<p><s>Malta</s>.</p><br>
<ul class="social">
{% for social in site.data.core.social %}
<li><a href="{{social.url}}"{% if social.blank != false %} target="_blank"{% endif %}>{{social.label}}</a></li>
{% endfor %}
</ul>
</article>
</section>