forked from bnamita/water-data-portal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
56 lines (52 loc) · 2.51 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
---
layout: page
---
<div class="home-intro">
<p> Understanding water in all its forms in every part of the water cycle is vital to ensuring its sustainable
and equitable management. Whether there is a scarcity of water or an excess of it, knowing precisely the quantum
of water, whether underground in aquifers, embedded in the soil as soil moisture or in numerous lakes, reservoirs
and rivers is vital. Knowing where and to what degree water is consumed, in agriculture or water thirsty cities
and industries is equally essential to encourage judicious use of the resource. Moreover it isn't sufficient to
know the movement and quantum of water if that knowledge is in the hands of a select few.
</p>
<p> The democratization of access to data of water we believe holds much promise. It potentially allows
communities the possibility to come together for making decisions that impact both drinking water security
and agriculture immensely. Many factors play a role in preventing management of water as a common
property resource, however a paradigm shift in the availability of water resources data would go a long way
towards addressing the problem.
</p>
<p> Let us hear your thoughts on this exploration of water data as we blog updates to this site. Stay tuned!</p>
</div>
{% 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" style="margin-bottom:5px">Posted by {{ post.author }} on {{ post.date | date: "%B %-d, %Y" }}</p>
<div class="notepad-index-post-tags" style="">
{% for tag in post.tags %}<a href="{{ site.baseurl }}/search/index.html#{{ tag | cgi_encode }}" title="Other posts from the {{ tag | capitalize }} tag">{{ tag | capitalize }}</a>{% unless forloop.last %} {% endunless %}{% endfor %}
</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 %}