forked from inded/Jekyll_modern-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (57 loc) · 2.68 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
---
layout: compress
---
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ site.title }}</title>
<meta name="description" content="{{ site.description }}"/>
<meta name="keywords" content="{{ site.keywords }}"/>
<meta name="author" content="{{ site.author }}"/>
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="stylesheet" type="text/css" href="css/normalize.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="fonts/font-awesome/css/font-awesome.css"/>
<link rel="stylesheet" type="text/css" href="css/modern-blog.css"/>
<!--[if IE]>
<script type="text/javascript" src="js/vendors/html5.min.js"></script>
<![endif]-->
<script>
if (navigator.userAgent.toLowerCase().indexOf('firefox') > -1) {
var root = document.getElementsByTagName('html')[0];
root.setAttribute('class', 'ff');
}
</script>
</head>
<body class="body">
<div class="container">
<header class="header">
<h1>{{site.title}}<span>{{ site.description }}</span></h1>
<p>Amis cartograffeur, contribuez en postant vos photos sur instagram et twitter avec le hashtag #RebellionTech</p>
<nav class="links">
<a href="https://twitter.com/search?q=%23rebelliontech&src=typed_query" target="_blank"><i class="fa fa-twitter-square fa-3x"></i></a>
<a href="https://www.instagram.com/explore/tags/rebelliontech/" target="_blank"><i class="fa fa-instagram fa-3x"></i></a>
</nav>
</header>
<div id="gallery">
<center>
<h2 style="font-size:30px;">Gallerie</h2>
<div class="row">
{% for post in site.posts %}
<div class="col-md-6"><img style="width:100%;margin:10px;" src="{{ post.image }}" alt="{{ post.title}}"></div>
{% endfor %}
</div>
</center>
</div>
<div id="map">
<center>
<h2 style="font-size:30px;">Carto <a style="font-size:10px" href="https://umap.openstreetmap.fr/fr/map/carto-graff_414430">Source Umaps</a></h2>
<p></p>
<iframe width="100%" height="500px" frameborder="0" allowfullscreen src="https://umap.openstreetmap.fr/fr/map/carto-graff_414430?scaleControl=false&miniMap=false&scrollWheelZoom=false&zoomControl=true&allowEdit=false&moreControl=true&searchControl=null&tilelayersControl=null&embedControl=null&datalayersControl=true&onLoadPanel=undefined&captionBar=false"></iframe>
</center>
</div>
</div>
</html>