diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-18 09:08:05 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-18 09:08:05 +0100 |
commit | 543c7590d8e8e273618e9584ad78a9049339192b (patch) | |
tree | ee571c99433cd439f0f4653beb00ab4ccfc10994 /source/static/templates/article.html | |
parent | The plain_text views and plain_text template has been removed. There is now a... (diff) | |
download | newspipe-543c7590d8e8e273618e9584ad78a9049339192b.tar.gz newspipe-543c7590d8e8e273618e9584ad78a9049339192b.tar.bz2 newspipe-543c7590d8e8e273618e9584ad78a9049339192b.zip |
It is now possible to switch between the plain text and the HTML version of the article.
Diffstat (limited to 'source/static/templates/article.html')
-rw-r--r-- | source/static/templates/article.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/static/templates/article.html b/source/static/templates/article.html index 123aaa9f..ec0addb9 100644 --- a/source/static/templates/article.html +++ b/source/static/templates/article.html @@ -19,7 +19,11 @@ </div> <hr /> - <a href="/article/${feed['feed_id']}:${article['article_id']}/?plain_text=1">Plain text</a> + %if plain_text == "1": + <a href="/article/${feed['feed_id']}:${article['article_id']}">HTML version</a> + %else: + <a href="/article/${feed['feed_id']}:${article['article_id']}/?plain_text=1">Plain text</a> + %endif - <a href="/epub/${feed['feed_id']}:${article['article_id']}">Export to EPUB</a> <br /> <a href="${article['article_link']}">Complete story</a> |