This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsconnesso.html
61 lines (55 loc) · 1.9 KB
/
sconnesso.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
---
layout: wrapper
---
<main class='h-entry one column'>
<section class='center row'>
<a class='u-uid u-url' href='{{ page.url | prepend: 'https://tommi.space' }}'><h1 class='p-name'>{{ title }}</h1></a>
<p class='metadata'>
{% if lang == 'it' %}
{% if location %}
{% for place in places %}
{% if place.name contains location %}
<a href='https://openstreetmap.org?mlat={{ place.lat }}&mlon={{ place.lon }}&zoom=18' title='{{ place.name }} su OpenStreetMap'>{{ place.name }}</a>,
{% endif %}
{% endfor %}
{% endif %}
<time class='dt-published' datetime='{{ date | date: '%Y-%m-%dT%H:%M:%S%:z' }}'>{% render date-it.html, date: date %}</time>
{% else %}
{% if location %}
{% for place in places %}
{% if place.name contains location %}
<a href='https://openstreetmap.org?mlat={{ place.lat }}&mlon={{ place.lon }}&zoom=18' title='{{ place.name }} on OpenStreetMap'>{{ place.name }}</a>,
{% endif %}
{% endfor %}
{% endif %}
<time class='dt-published' datetime='{{ date | date: '%Y-%m-%dT%H:%M:%S%:z' }}'>{{ date | date: '%e %B %Y' }}</time>
{% endif %}
<a rel='author' class='p-author h-card' href='https://tommi.space/about'>Tommi</a>
</p>
</section>
{% render page-tags.html, tags: tags, site: site, size: 'smaller' %}
<div class='row'>
<article class='e-content'>
<audio controls preload='auto'>
<source src='{{ sourceUrl }}{{ audio }}'>
</audio>
{{ content }}
</article>
</div>
</main>
<div class='row'>
<div class='half column'>
{% render share.html, lang: lang, title: title, url: page.url %}
</div>
<div class='half column'>
{% render listen-on.html, lang: lang %}
</div>
</div>
<div class='row'>
<div class='half column'>
{% render backlinks.html, raw_url: page.url, all_pages: collections.all, lang: lang %}
</div>
<div class='half column'>
{% render comments.html, lang: lang %}
</div>
</div>