blob: 02f5bcbd686f9518ae552d6dd3f66e59ba2abf14 (
about) (
plain) (
blame)
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
|
---
layout: default
---
<article>
<section class="header">
{{ site.t.posted_on[page.lang] }}
{% include i18n-date.html date=page.date %}
</section>
{% if page.updated_at %}
<section class="header">
{{ site.t.updated_at[page.lang] }}
{% include i18n-date.html date=page.updated_at %}
</section>
{% endif %}
<section>
{% if page.audio %}
<audio controls>
<source src="{% link /resources/podcasts/{{ page.date | date: "%Y-%m-%d" }}-{{ page.slug }}.ogg %}" type="audio/ogg">
<source src="{% link /resources/podcasts/{{ page.date | date: "%Y-%m-%d" }}-{{ page.slug }}.flac %}" type="audio/flac">
</audio>
<div class="torrent-link">
{% capture torrent-file %}{{ site.url }}/resources/podcasts/{{ page.date | date: "%Y-%m-%d" }}-{{ page.slug }}.ogg.torrent{% endcapture %}
<a href="{{ torrent-file }}">torrent</a>
|
<a href="/torrent.html?torrent={{ torrent-file | uri_escape }}">online webtorrent</a>
</div>
{% endif %}
{% if page.video %}
<div class="torrent-link">
{% capture torrent-file %}{{ site.url }}/resources/screencasts/{{ page.date | date: "%Y-%m-%d" }}-{{ page.slug }}.mkv.torrent{% endcapture %}
<a href="{{ torrent-file }}">torrent</a>
|
<a href="/torrent.html?torrent={{ torrent-file | uri_escape }}">online webtorrent</a>
</div>
{% endif %}
{{ content }}
</section>
<section class="post-footer">
<p>
{% include public-inbox.html %}
</p>
</section>
</article>
|