-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
65 lines (60 loc) · 2.07 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
61
62
63
64
65
---
layout: default
title: Home
---
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-lg-3 col-xs-12">
<img src="{{ site.baseurl }}{{ site.logo }}" alt="Open Data Scotland logo" style="object-fit: cover; margin-right: 2rem; width: 100%;">
</div>
<div class="col-lg-9 col-xs-12">
<h1>{{ site.greeting }}</h1>
<p>
{{ site.description }}
</p>
<p><a class="btn btn-primary btn-lg" href="{{ site.baseurl }}/datasets" role="button">Start browsing</a></p>
</div>
</div>
</div>
</div>
<section class="row">
<div class="col-md-6 col-xs-12">
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<h2 class="panel-title">Recently popular datasets (last 7 days)</h2>
</div>
<!-- List group -->
<div class="list-group" id="popular-datasets" data-component="popular-datasets">
<div class="loader loader-centre"></div>
</div>
</div>
</div>
<div class="col-md-6 col-xs-12">
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<h2 class="panel-title">5 random datasets</h2>
</div>
<!-- List group -->
<div class="list-group" id="random-datasets" data-component="random-datasets">
<div class="loader loader-centre"></div>
</div>
</div>
</div>
</section>
<h2>Browse by Category</h2>
<div class="homepage-categories">
{% for category in site.data.categories %}
{% if category.featured == true %}
{% capture logo_alt %}{{ category.name }}{% if category.logo_credit and category.logo_credit != empty %} logo by {{ category.logo_credit }}{% endif %}{% endcapture %}
<a href="{{ site.baseurl }}/datasets/?category={{ category.name | slugify }}" class="thumbnail" title="{{ logo_alt }}">
{% if category.logo and category.logo != empty %}
<img src="{{ site.baseurl }}{{ category.logo }}" alt="{{ logo_alt }}">
{% endif %}
{{ category.name }}
</a>
{% endif %}
{% endfor %}
</div>