-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtemplate.html
More file actions
43 lines (40 loc) · 1.73 KB
/
template.html
File metadata and controls
43 lines (40 loc) · 1.73 KB
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
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Famous people on {{country}}'s street
names based on data extracted from openstreetmap and descriptions from wikipedia">
<meta name="keywords" content="persons, people, street names, eponyms, {{country}}">
<title>
Frequent persons on {{country}}'s street signs
</title>
<link rel="stylesheet" type="text/css" href="../../index.css" />
<link rel="stylesheet" type="text/css" href="../index.css" />
<script type="module" src="https://cdnjs.cloudflare.com/ajax/libs/ramda/0.30.0/ramda.min.js"> </script>
<script type="module" src="../../index.js"></script>
<script type="module" src="../index.js"></script>
</head>
<body>
<div id="menu"></div>
<div id="header"></div>
<div id="all-contents">
<div class="title">
<h1>Frequent persons on {{country}}'s street signs</h1>
</div>
<div class="flex">
<a class="left" href="..">countries</a>
<div class="right"><b>{{persons_count}}</b> names / <b>{{streets_count}}</b> streets</div>
</div>
<div id="persons">
{{#persons}}
<a target="_blank" href="{{{url}}}">
<div class="eponym" keywords="{{occupations}}" style="display: inline-block">
<h2 class="name">{{name}}</h2>
<img class="image" loading="lazy" src="{{{image}}}" alt="{{name}}"/>
<span class="count">{{count}}</span>
<span class="summary">{{summary}}</span>
</div>
</a>
{{/persons}}
</div>
</div>
</body>