-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (75 loc) · 3.43 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
73
74
75
---
layout: default
class: home
---
<main class="site__main">
<article class="wrapper">
<section>
<h5 class="gamma [ title title--primary ]">Hello</h5>
<p>I'm a graphics and web designer obsessed with complex pattern abstraction que es fluido en español. When I'm away from my computer I can be found preaching, hiking, changing diapers, or trying to dunk a basketball.</p>
<p>
<a class="title--small-cap [ btn btn--internal ]" href="{{ '/resume' | prepend: site.baseurl }}">View my resume</a>
</p>
</section>
<section>
<h5 class="gamma [ title title--primary ]">Recent Works</h5>
<ul class="post__list">
{% for post in site.categories['portfolio'] limit: 3 %}
<li class="post__item">
<a class="post__link [ title title--small-cap ]" href="{{ post.url | append: '#portfolio__gallery' | prepend: site.baseurl }}">
{{ post.title }}
</a>
<ul class="post__tags [ list--inline list--commas ]">
{% for item in post.tags %}
<li>{{ item.product }}</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
<p>
<a class="title--small-cap [ btn btn--internal ]" href="{{ '/portfolio' | prepend: site.baseurl }}">See All</a>
</p>
</section>
<section>
<h5 class="gamma [ title title--primary ]">Fun with Code</h5>
<ul class="post__list">
{% for post in site.categories['experiments'] limit: 3 %}
<li class="post__item">
<a class="post__link [ title title--small-cap ]" href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}
</a>
<ul class="post__tags [ list--inline list--commas ]">
{% for item in post.tags %}
<li>{{ item.tag }}</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
<p>
<a class="title--small-cap [ btn btn--internal ]" href="{{ '/experiments' | prepend: site.baseurl }}">View Archive</a>
</p>
</section>
<section>
<h5 class="gamma [ title title--primary ]">On my mind</h5>
<ul class="post__list">
{% for post in site.categories['blog'] limit: 3 %}
<li class="post__item">
<a class="post__link [ title title--small-cap ]" href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}
</a>
<ul class="post__tags [ list--inline list--commas ]">
{% for item in post.tags %}
<li>{{ item.tag }}</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
<p>
<a class="title--small-cap [ btn btn--internal ]" href="{{ '/blog' | prepend: site.baseurl }}">View Archive</a>
</p>
</section>
</article>
</main>