-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfrontpage.html
executable file
·22 lines (20 loc) · 1.13 KB
/
frontpage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% include head.html %}
{% include header.html %}
<div id="main-content" class="container goal-tiles" role="main">
<h1>{{site.country.name}} data for Sustainable Development Goal indicators</h1>
<p>Click on each goal<span style="display:none" id="jump-to-search">, <a href="javascript:void(0)">or search</a>,</span> for {{site.country.name}} statistics for Sustainable Development Goal global indicators.</p>
{% for goal in site.goals %}
{% cycle 'add row' : '<div class="row no-gutters">', '', '', '', '', '' %}
<div class="col-xs-4 col-md-2">
<a href="./{{ goal.short | slugify }}/">
<img src="{{ site.baseurl }}/assets/img/goals/{{ goal.sdg_goal }}.png" id="goal-{{ goal.sdg_goal }}" alt="{{ goal.short }} - Goal {{ goal.sdg_goal }}" />
</a>
</div>
{% cycle 'end row' : '', '', '', '', '', '</div>' %}
{% endfor %}
<div class="col-xs-4 col-md-2">
<img src="{{ site.baseurl }}/assets/img/goals/18.png" id="goal-18" alt="The Global Goals for Sustainable Development" />
</div>
</div>
</div>
{% include footer.html %}