1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00
This commit is contained in:
Maksym Pavlenko
2018-12-21 16:08:11 -08:00
parent aee6f45c65
commit 98f0b7a300
6 changed files with 120 additions and 33 deletions

View File

@@ -16,6 +16,10 @@ a {
text-decoration: none;
}
.pad10 {
padding: 10px;
}
.black {
color: #000000;
}
@@ -57,18 +61,18 @@ a {
z-index: -1;
}
.twitter-link {
.footer-links {
position: absolute;
right: 2em;
bottom: 0;
font-size: 3em;
}
.twitter-link a {
.footer-links a {
color: rgb(62, 62, 41);
}
.twitter-link a:hover {
.footer-links a:hover {
color: rgb(33, 33, 26);
background: none;
}

View File

@@ -1,4 +1,5 @@
User-agent: *
Allow: /$
Allow: /faq.html
Disallow: /
Host: www.podsync.net

View File

@@ -1,28 +0,0 @@
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-64237526-1', 'auto');
ga('send', 'pageview');
</script>
<script>
(function (w, i, d, g, e, t, s) {
w[d] = w[d] || [];
t = i.createElement(g);
t.async = 1;
t.src = e;
s = i.getElementsByTagName(g)[0];
s.parentNode.insertBefore(t, s);
})(window, document, '_gscq', 'script', '//widgets.getsitecontrol.com/23626/script.js');
</script>

View File

@@ -31,7 +31,36 @@
{% endblock %}
{% block analytics %}
{% include "_analytics.html" %}
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-64237526-1', 'auto');
ga('send', 'pageview');
</script>
{% endblock %}
{% block support %}
<script>
(function (w, i, d, g, e, t, s) {
w[d] = w[d] || [];
t = i.createElement(g);
t.async = 1;
t.src = e;
s = i.getElementsByTagName(g)[0];
s.parentNode.insertBefore(t, s);
})(window, document, '_gscq', 'script', '//widgets.getsitecontrol.com/23626/script.js');
</script>
{% endblock %}
</body>
</html>

80
templates/faq.html Normal file
View File

@@ -0,0 +1,80 @@
{% extends "_base.html" %}
{% block body %}
<div class="background-image">
<div class="pad10">
<div class="pad10 main-border">
<h1>FAQ</h1>
<ol>
<li>
<h3>
Can I delete my feed?
</h3>
<p>
Not manually. Feeds are automatically deleted if not used for more than 90 days.
</p>
</li>
<li>
<h3>
I am trying to turn the link below into a podcast form (to listen to on my phone) and it doesn't seem to be working?
https://www.youtube.com/watch?v=XXxxxXXxXxX
</h3>
<p>
Podsync can't build a feed from just one video. You have to provide a link either to a channel, user, or playlist.
</p>
</li>
<li>
<h3>
Audio podcast is double the length of the video, and the second half is silent
</h3>
<p>
This is known issue. Unfortunately as of now I don't have any fix for this.
</p>
</li>
<li>
<h3>
I am trying to download some files, but it is giving the following error "Download failed, error code 403 forbidden".
Is there a solution?
</h3>
<p>
That happens because you're in a different region than Podsync.
More details on this <a href="https://www.patreon.com/posts/youtube-playlist-7874992">here</a>.
I've been working on multi-region support, fix is coming soon.
</p>
</li>
<li>
<h3>
Does feeds auto-update as new videos show up on YouTube?
Or do they just represent a snapshot of whenever you generated them?
</h3>
<p>
Feeds are updated in real time.
</p>
</li>
<li>
<h3>
Is it possible to get a podcast of all videos in "watch later" on YouTube?
</h3>
<p>
No, that would require "login with your YouTube account" on Podsync.
Instead you might want to create custom playlist and add there videos you want to watch.
</p>
</li>
</ol>
</div>
</div>
<div class="footer">
<div class="footer-links">
<a href="/"><i class="fa fa-home" aria-hidden="true"></i></a>
<a href="https://twitter.com/pod_sync"><i class="fa fa-twitter" aria-hidden="true"></i></a>
</div>
</div>
</div>
{% endblock %}

View File

@@ -134,7 +134,8 @@
</div>
<div class="footer">
<div class="twitter-link">
<div class="footer-links">
<a href="./faq.html"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
<a href="https://twitter.com/pod_sync"><i class="fa fa-twitter" aria-hidden="true"></i></a>
</div>
</div>