Skip to content

Commit 1445e1b

Browse files
authored
Better website when deeplink fails (#351)
1 parent 80034d9 commit 1445e1b

File tree

3 files changed

+51
-0
lines changed

3 files changed

+51
-0
lines changed

_i18n/en.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ homepage:
8686
description: "With AntennaPod, you can download episodes and listen anywhere. You can even select podcasts that should be downloaded automatically."
8787
img-alt: ""
8888

89+
# Not installed
90+
not-installed:
91+
title: "AntennaPod not installed"
92+
text: "AntennaPod is not installed or your browser does not support opening it directly."
93+
8994
## Blog
9095
blog:
9196
posted: "Posted on"

deeplink/main/index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
layout: internal
3+
title: not-installed.title
4+
---
5+
6+
<div class="container-fluid">
7+
<div class="container">
8+
<div class="row justify-content-md-center">
9+
<div class="col col-xl-6">
10+
<article class="post-content">
11+
<h2 id="podcastTitle">{% t not-installed.title %}</h2>
12+
<p>
13+
{% t not-installed.text %}
14+
</p>
15+
<p>
16+
<a href="{{ site.baseurl }}/download" class="hero mr-3 mb-3 mb-xs-0">{% t generic.download %}</a>
17+
</p>
18+
</article>
19+
</div>
20+
</div>
21+
</div>
22+
</div>
23+

deeplink/search/index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
layout: internal
3+
title: not-installed.title
4+
---
5+
6+
<div class="container-fluid">
7+
<div class="container">
8+
<div class="row justify-content-md-center">
9+
<div class="col col-xl-6">
10+
<article class="post-content">
11+
<h2 id="podcastTitle">{% t not-installed.title %}</h2>
12+
<p>
13+
{% t not-installed.text %}
14+
</p>
15+
<p>
16+
<a href="{{ site.baseurl }}/download" class="hero mr-3 mb-3 mb-xs-0">{% t generic.download %}</a>
17+
</p>
18+
</article>
19+
</div>
20+
</div>
21+
</div>
22+
</div>
23+

0 commit comments

Comments
 (0)