-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.jinja
43 lines (38 loc) · 1.99 KB
/
index.jinja
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>SDR Heatmaps</title>
<meta name="description" content="A collection of high resolution radio heatmaps" />
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="assets/css/screen.css" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" />
</head>
<body class="home-template">
<header class="main-header" style="background-image: url(assets/images/background.jpg); height: 500px;">
<div class="vertical">
<div class="main-header-content inner">
<h1 class="page-title">SDR Heatmaps</h1>
<h2 class="page-description">
See the radio <a href='https://github.com/bogdanr/SDR-heatmaps'> About this</a>
</h2>
</div>
</div>
</header>
{% for map in maps %}
<article class="post">
<header class="post-header"><h2 class="post-title"><a href="tiles/{{ map['URL'] }}">{{ map['title'] }}</a></h2></header>
<section class="post-excerpt">
<p>{{ map['description'] }}</p>
</section>
<footer class="post-meta">{{ map['contributor'] }}<time class="post-date" datetime="{{ map['date'] }}">{{ map['date'] }} - <a href="#" class="tooltip">{{ map['city'] }}<span><img src="https://maps.google.com/maps/api/staticmap?zoom=12&size=600x300¢er={{ map['coordinates'] }}"></span></a></time></footer>
</article>
{% endfor %}
<script type="text/javascript" src="/assets/js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="/assets/js/jquery.fitvids.js"></script>
<script type="text/javascript" src="/assets/js/index.js"></script>
</body>
</html>