-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (74 loc) · 2.55 KB
/
Copy pathindex.html
File metadata and controls
88 lines (74 loc) · 2.55 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
layout: page
title:
description: "Coding together for the Sustainable Development Goals"
---
This open source collaboration initiative promotes collaboration between Academia, private sector, civil society, and governments to build open source software for the Sustainable Development Goals adopted at the United Nations.
<a href="http://www.un.org/sustainabledevelopment">
<img src="{{ site.baseurl }}/img/E_Logo_No UN Emblem-01.png" alt="Unite Open Source">
</a>
<span class="caption text-muted">ICT4SD supports the Sustainable Development Goals.</span>
<a class="btn btn-default" href="about" role="button">Learn more</a>
<hr>
<!-- News section>
<h2>News</h2>
<!-- <div class="alert alert-info" role="alert">
<a href="https://hangouts.google.com/hangouts/_/event/chkagh1tt59nj5gs8c9rksb9gds">
News item here.
</a>
</div> -->
<!-- Sample news banner>
<span class="caption text-muted">Enter the #SE4ALL challenge</span>
<a href="https://unite.un.org/ideas/content/se4all-sustainable-energy-4-all">
<img src="{{ site.baseurl }}/img/promos/SE4all_banner.png" alt="Unite Ideas">
</a>
</div> -->
<hr>
<h1>Active projects</h1>
{% for post in paginator.posts %}
<div class="post-preview">
<a href="{{ post.url | prepend: site.baseurl }}">
<h2 class="post-title"> {{ post.title }}
</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
</a>
<!-- <p class="post-meta"> -->
<div class="row">
<div class="col-xs-3 col-md-2">
{% if post.goal %}
<img src="{{ site.baseurl }}/img/goals/E_SDG goals_icons-individual-rgb-{{post.goal}}.png" alt="SDG" width="100%">
{% endif %}
</div>
<div class="col-xs-9 col-md-10">
{% if post.partners %}
Partners:<br>
{% for each in post.partners %}
<strong>{{ each.partner}}</strong><br>
{% endfor %}
{% else %}
<strong>Looking for partners</strong>
{% endif %}
</div>
</div>
</div>
<hr>
{% endfor %}
<!-- Pager -->
{% if paginator.total_pages > 1 %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}