add "Feed Checker" to podcast publisher page
[mygpo.git] / mygpo / publisher / templates / publisher / info.html
blob5c560100bbc9f9bdcdef504649c586c235df8f31
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load podcasts %}
5 {% load menu %}
6 {% block mainmenu %}{{ "/publisher/"|main_menu }}{% endblock %}
7 {% block sectionmenu %}{{ "/publisher/"|section_menu }}{% endblock %}
9 {% block title %}{% trans "Publisher Pages" %}{% endblock %}
11 {% block header %}
12 <h1>{% trans "Publisher Services" %}</h1>
13 {% endblock %}
16 {% block content %}
18 <p>{% blocktrans with site as sitename %}{{ sitename }} offers several services for podcast publishers.{% endblocktrans %}</p>
20 <h2>{% trans "Advertise" %}</h2>
21 <p>{% blocktrans with site as sitename %}You can place your podcast on the frontpage of {{ sitename }} to promote your podcast. Users of the gPodder client will also find your podcast as the first item in the list of example podcast.{% endblocktrans %}</p>
23 {% url "advertise" as advertise-url %}
24 <p>{% blocktrans %}You can find additional details on the <a href="{{ advertise-url }}">advertisement page</a>.{% endblocktrans %}</p>
26 <h2>{% trans "Publisher Pages" %}</h2>
27 <p>{% blocktrans with site as sitename %}On the <strong>{{ sitename }} Publisher Pages</strong> you can find valuable information about the Podcasts published by you.{% endblocktrans %}</p>
29 {% url "register" as register-url %}
30 <p>{% blocktrans with site as sitename %}The Publisher Pages are currently in Beta, but if you are publishing a podcast listed on {{ sitename }}, feel free to apply by sending a mail with
31 <ul>
32 <li>your username on {{ sitename }} (<a href="{{ register-url }}">register if you don't have one</a>)</li>
33 <li>the name and URL of the podcast you are publishing</li>
34 <li>an email address that is visible somewhere on the podcast's website (to legitimate you)
35 </ul>
36 to <a href="mailto:stefan@gpodder.net">stefan@gpodder.net</a>.{% endblocktrans %}</p>
38 {% url "login" as login-url %}
39 <p>{% blocktrans %}If you already are registered as a publisher, please <a href="{{ login-url }}?next=/publisher/">login</a>.{% endblocktrans %}</p>
41 <h2>{% blocktrans with site as sitename %}Link to {{ sitename }}{% endblocktrans %}</h2>
43 {% url "link-here" as link-here-url %}
44 <p>{% blocktrans with site as sitename %}If you <a href="{{ link-here-url }}">link to {{ sitename }}</a> from your website, you can make it really easy for your visitors to subscribe to your podcast - especially for users of mobile phones.{% endblocktrans %}</p>
46 {% endblock %}