-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathroadmap.html
48 lines (47 loc) · 1.27 KB
/
roadmap.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
---
permalink: "/roadmap"
layout: external
ref: roadmap
title: '{{ site.translations[site.lang].seo.meta.roadmap.title }}'
description: '{{ site.translations[site.lang].seo.meta.roadmap.desc }}'
---
<!-- roadmap -->
<section id="roadmap" class="section section-padded">
<div class="container">
<div class="flex-row text-center title">
<p class="light">{% t sections.roadmap.paragraph %}</p>
</div>
<div class="row">
<div class="col-md-12">
<div class="timeline">
{% for order in (1..30) %}
{% for goal in site.data['en'].roadmap %}
{% assign item = goal[1] %}
{% if item.order == order %}
<div class="timeline-container {{ item.alignment }}">
<div class="timeline-content">
{% if item.year %}
<p class="timeline-date">
{% if item.quarter %}
Q{{ item.quarter }}
{% endif %}
{{ item.year }}
</p>
{%endif%}
<h2>{{ item.title }}</h2>
{% if item.complete == "true" %}
<span style="color: #4cb85f; display: inline-block;">
<i class="fa fa-check" aria-hidden="true"></i>
</span>
{% endif %}
<p> {{ item.desc }} </p>
</div>
</div>
{% endif %}
{% endfor %}
{% endfor %}
</div>
</div>
</div>
</div>
</section>