forked from okfn/opendatasurvey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (57 loc) · 2.14 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
56
57
58
59
60
---
layout: default
title: Start
index: true
root: .
---
<style type="text/css">
.navbar {
border-bottom-style:none;
}
</style>
<script src="{{page.root}}/src/front.js"></script>
<script src="{{page.root}}/src/common.js"></script>
<div class="dashboard">
<div class="inner">
<div class="row">
<div class="span4">
<p>There are</p> <a href="catalogs/" class="bignumber" id="tds"><span>0</span></a> <p>Open Data Catalogs</p>
</div>
<div class="span8">
<p> </p>
<a href="census/" class="bignumber" id="nok"><span>0</span></a><span
class="between-numbers">of</span><a href="census/" class="bignumber"
id="nds"><span>0</span></a> <p>key datasets in the<br>census are open</p>
</div>
</div>
</div>
</div>
<section class="home-content">
<div class="row">
<div class="span4">
<p><strong>The open data census</strong> assesses the state of <a href="http://okfn.org/opendata/">open data</a> around the world. This site hosts the census and presents the results along with other key facts about the state of open data and especially open government data around the world. <a href="about/">Find out more »</a></p>
<p>The accuracy of the data presented here depends on the accuracy of the data in our sources. If you spot an error or see something you see is incorrect please <a href="http://okfn.org/contact/">let us know</a>.</p>
</div>
<div class="span4">
<a href="country/" class="link well" style="background-image:url(css/census-map.png);">
<span class="ribbon">Country Census</span>
</a>
</div>
<div class="span4">
<a href="catalogs/" class="link well" style="background-image:url(css/map.png);">
<span class="ribbon">Map of datacatalogs</span>
</a>
</div>
</div>
</section>
<script>
$(window).scroll(function(e){
$el = $('.navbar');
if ($(this).scrollTop() > 1 && $el.css('border-bottom-style') != 'solid'){
$('.navbar').css({'border-bottom-style': 'solid'});
}
if ($(this).scrollTop() < 1 && $el.css('border-bottom-style') == 'solid') {
$('.navbar').css({'border-bottom-style': 'none'});
}
});
</script>