-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (50 loc) · 1.32 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
---
title: "codehearts is catherine hart"
layout: codehearts
---
<article class="bio">
{% for bio in site.bios %}
<h1>{{ bio.name }}</h1>
<figure>
{% include picture.html src=bio.image alt=bio.image_alt %}
</figure>
{{ bio.content }}
<nav>
<ul>
{% for link in bio.links %}
<li><a href="{{ link.link | absolute_url }}" {% if link.icon %}data-icon="{{ link.icon }}"{% endif %} class="button">{{ link.name }}</a></li>
{% endfor %}
</ul>
</nav>
{% endfor %}
</article>
<article class="repos">
<h1>this is what i'm doing</h1>
{% for repo in site.repos %}
<article>
<h2>{{ repo.name }}</h2>
{{ repo.content }}
<a href="https://github.com/{{ repo.repo }}" class="button">browse</a>
</article>
{% endfor %}
</article>
<article class="works">
<h1>this is what i've done</h1>
{% for work in site.works reversed %}
<article>
<h2>{{ work.name }}</h2>
<h3>{{ work.time }}</h3>
{{ work.content }}
{% if work.link %}
<p>
<a href="{{ work.link }}" class="button">
{{ work.link_label | default: work.link }}
</a>
</p>
{% endif %}
<figure>
{% include picture.html src=work.image alt=work.image_alt %}
</figure>
</article>
{% endfor %}
</article>