diff options
Diffstat (limited to 'themes/baggy')
-rwxr-xr-x | themes/baggy/config.twig | 6 | ||||
-rwxr-xr-x | themes/baggy/view.twig | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/themes/baggy/config.twig b/themes/baggy/config.twig index cd86a4fd..dda05c29 100755 --- a/themes/baggy/config.twig +++ b/themes/baggy/config.twig | |||
@@ -128,9 +128,9 @@ | |||
128 | <h2>{% trans "Fancy an E-Book ?" %}</h2> | 128 | <h2>{% trans "Fancy an E-Book ?" %}</h2> |
129 | <p>{% trans "Click to get all your articles in one ebook :" %} | 129 | <p>{% trans "Click to get all your articles in one ebook :" %} |
130 | <ul> | 130 | <ul> |
131 | <li><a href="./?epub&method=all" title="Generate ePub file">ePub 3</a></li> | 131 | <li><a href="./?epub&method=all" title="{% trans 'Generate ePub file' %}">ePub 3</a></li> |
132 | <li><a href="./?mobi&method=all" title="Generate Mobi file">Mobi</a></li> | 132 | <li><a href="./?mobi&method=all" title="{% trans 'Generate Mobi file' %}">Mobi</a></li> |
133 | <li><a href="./?pdf&method=all" title="Generate PDF file">PDF</a></li> | 133 | <li><a href="./?pdf&method=all" title="{% trans 'Generate PDF file' %}">PDF</a></li> |
134 | </ul> | 134 | </ul> |
135 | 135 | ||
136 | <br>{% trans "This can <b>take a while</b> and can <b>even fail</b> if you have too many articles, depending on your server configuration." %}</p> | 136 | <br>{% trans "This can <b>take a while</b> and can <b>even fail</b> if you have too many articles, depending on your server configuration." %}</p> |
diff --git a/themes/baggy/view.twig b/themes/baggy/view.twig index 85e3ddf1..3f151592 100755 --- a/themes/baggy/view.twig +++ b/themes/baggy/view.twig | |||
@@ -16,9 +16,9 @@ | |||
16 | {% if constant('SHARE_SHAARLI') == 1 %}<li><a href="{{ constant('SHAARLI_URL') }}/index.php?post={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}" target="_blank" class="tool shaarli" title="{% trans "shaarli" %}"><span>{% trans "shaarli" %}</span></a></li>{% endif %} | 16 | {% if constant('SHARE_SHAARLI') == 1 %}<li><a href="{{ constant('SHAARLI_URL') }}/index.php?post={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}" target="_blank" class="tool shaarli" title="{% trans "shaarli" %}"><span>{% trans "shaarli" %}</span></a></li>{% endif %} |
17 | {% if constant('FLATTR') == 1 %}{% if flattr.status == constant('FLATTRABLE') %}<li><a href="http://flattr.com/submit/auto?url={{ entry.url }}" class="tool flattr icon icon-flattr" target="_blank" title="{% trans "flattr" %}"><span>{% trans "flattr" %}</span></a></li>{% elseif flattr.status == constant('FLATTRED') %}<li><a href="{{ flattr.flattrItemURL }}" class="tool flattr icon icon-flattr" target="_blank" title="{% trans "flattr" %}"><span>{% trans "flattr" %}</span> ({{ flattr.numflattrs }})</a></li>{% endif %}{% endif %} | 17 | {% if constant('FLATTR') == 1 %}{% if flattr.status == constant('FLATTRABLE') %}<li><a href="http://flattr.com/submit/auto?url={{ entry.url }}" class="tool flattr icon icon-flattr" target="_blank" title="{% trans "flattr" %}"><span>{% trans "flattr" %}</span></a></li>{% elseif flattr.status == constant('FLATTRED') %}<li><a href="{{ flattr.flattrItemURL }}" class="tool flattr icon icon-flattr" target="_blank" title="{% trans "flattr" %}"><span>{% trans "flattr" %}</span> ({{ flattr.numflattrs }})</a></li>{% endif %}{% endif %} |
18 | {% if constant('SHOW_PRINTLINK') == 1 %}<li><a title="{% trans "Print" %}" class="tool icon icon-print" href="javascript: window.print();"><span>{% trans "Print" %}</span></a></li>{% endif %} | 18 | {% if constant('SHOW_PRINTLINK') == 1 %}<li><a title="{% trans "Print" %}" class="tool icon icon-print" href="javascript: window.print();"><span>{% trans "Print" %}</span></a></li>{% endif %} |
19 | <li><a href="./?epub&method=id&value={{ entry.id|e }}" title="Generate epub file">EPUB</a></li> | 19 | <li><a href="./?epub&method=id&value={{ entry.id|e }}" title="Generate ePub file">EPUB</a></li> |
20 | <li><a href="./?mobi&method=id&value={{ entry.id|e }}" title="Generate mobi file">MOBI</a></li> | 20 | <li><a href="./?mobi&method=id&value={{ entry.id|e }}" title="Generate Mobi file">MOBI</a></li> |
21 | <li><a href="./?pdf&method=id&value={{ entry.id|e }}" title="Generate epub file">PDF</a></li> | 21 | <li><a href="./?pdf&method=id&value={{ entry.id|e }}" title="Generate PDF file">PDF</a></li> |
22 | <li><a href="mailto:hello@wallabag.org?subject=Wrong%20display%20in%20wallabag&body={{ entry.url|url_encode }}" title="{% trans "Does this article appear wrong?" %}" class="tool bad-display icon icon-delete"><span>{% trans "Does this article appear wrong?" %}</span></a></li> | 22 | <li><a href="mailto:hello@wallabag.org?subject=Wrong%20display%20in%20wallabag&body={{ entry.url|url_encode }}" title="{% trans "Does this article appear wrong?" %}" class="tool bad-display icon icon-delete"><span>{% trans "Does this article appear wrong?" %}</span></a></li> |
23 | </ul> | 23 | </ul> |
24 | </div> | 24 | </div> |