-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeline.html
35 lines (34 loc) · 1.28 KB
/
timeline.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
<!-- Timeline Section -->
{% comment %}
Expects following parameters:
timeline-title,
timeline-data,
timeline-col-width,
image-col-width,
date-col-width,
desc-col-width
{% endcomment %}
<section id="timeline" class="container content-section">
<div class="row">
<div class="col-md-{{ include.timeline-col-width }} timeline">
<h2>/ {{ include.timeline-title }}</h2>
{% for date in include.timeline-data %}
<div class="row">
<div class="col-xs-{{ include.date-col-width }} timeline-date">
<p class="emph uppercase">
{{ date.date }}
</p>
</div>
<div class="col-xs-{{ include.desc-col-width }} timeline-desc">
<p style="text-align: left;">
{{ date.description }}
</p>
</div>
</div>
{% endfor %}
</div>
<div class="col-md-{{ include.image-col-width }} text-center" style="filter: {{ site.color.image-filter }};">
<img class="width-100 width-max-400px" src="{{ "./images/ai-generated-800x800/group_of_people_looking_at_a_clock_1.webp" | relative_url }}">
</div>
</div>
</section>