-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
62 lines (58 loc) · 2.02 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
---
layout: base
---
<div class="container-fluid">
<div class="header">
{% if site.personal_site %}
<p><a href="{{site.personal_site.url}}">← {{site.personal_site.title}}</a></p>
{% endif %}
<h1>{{ site.title }}</h1>
<p>Timelines are a fun way to visualize someone's life and get to know them quickly. This is my timeline, as of <a href="#bottom" title="Scroll to bottom">{{ site.time | date: '%B %Y' }}</a>.
{% if site.linkedin %}
For professional milestones, see <a href="{{site.linkedin}}" target="_blank" rel="noopener noreferrer">LinkedIn</a>.
{% endif %}
</p>
</div>
<ul class="timeline timeline-split">
{% for period in site.periods %}
{% if period.name %}
<li class="timeline-item period">
<div class="timeline-info"></div>
<div class="timeline-marker"></div>
<div class="timeline-content">
<h2 class="timeline-title">{{ period.name }}</h2>
</div>
</li>
{% endif %}
{% for event_hash in period.events %}
{% for event in event_hash %}
<li class="timeline-item">
<div class="timeline-info">
<span>{{ event[0] }}</span>
</div>
<div class="timeline-marker"></div>
<div class="timeline-content">
<h3 class="timeline-title">{{ event[1] }}</h3>
</div>
</li>
{% endfor %}
{% endfor %}
{% endfor %}
{% if site.show_today %}
<li class="timeline-item inactive">
<div class="timeline-info">
<span>Today</span>
</div>
<div class="timeline-marker"></div>
<div class="timeline-content">
<h3 class="timeline-title"> </h3>
</div>
</li>
{% endif %}
</ul>
<a id="bottom"></a>
<p class="footer">
© {{ site.author }} {{ site.time | date: '%Y' }}<br/>
Made with ♥ and <a href="https://github.com/neilgupta/timeliner" target="_blank" rel="noopener noreferrer" title="Make your own!">Timeliner</a>
</p>
</div>