-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (75 loc) · 2.61 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
layout: main
published: true
---
<body id='home' style='background-color: white'>
<div class='container'>
<div class='row'>
<div class='col-md-12 main-col'>
<div class='text-center'>
<div class="header">
<a href="{{ site.baseurl }}/">
<img src="/images/home-logo.png" class="logo">
</a>
<div class='logo-title'>
<a href="{{ site.baseurl }}/">
LRA Crisis Tracker Reports
</a>
</div>
</div>
<div class='navigation'>
<span class='nav-link'>
<a href="http://www.lracrisistracker.com/">
<i class='fa fa-map-marker'></i>
LRA Crisis Tracker Map
</a>
</span>
<span class='nav-link'>
<a href="http://www.theresolve.org/wp-content/uploads/2015/02/Map-Methodology-and-Database-Codebook-v2-2015.pdf">
<i class='fa fa-book'></i>
Codebook & Methodology
</a>
</span>
<span class='nav-link'>
<a href="http://twitter.com/CrisisTracker">
<i class='fa fa-twitter'></i>
@CrisisTracker
</a>
</span>
</div>
</div>
{% assign english_posts = site.categories['previews_en'] %}
{% assign french_posts = site.categories['previews_fr'] %}
<div>
<div class='featured'>
{% for post in site.categories['featured'] %}
<div class="link">
<span class='label label-primary'>Featured</span>
<a href="{{ post.post_url }}">
{{ post.title }}
</a>
<span class="link-date">
{{ post.date | date: "%B %Y" }}
</span>
</div>
{% endfor %}
</div>
<h5>English</h5>
{% include home/links.html posts=english_posts %}
<h5 style="margin-top: 70px;">Français</h5>
{% include home/links.html posts=french_posts %}
</div>
<div class='footer'>
<div class="logo-container text-center">
<a href="http://theresolve.org" target="_blank">
<img src="/images/tracking-kony/resolve-logo.png" class="resolve-logo-home">
</a>
<a href="http://invisiblechildren.com" target="_blank">
<img src="/images/tracking-kony/ic-logo.png" class="ic-logo-home">
</a>
</div>
</div>
</div>
</div>
</div>
</body>