diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-18 08:43:02 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-18 08:43:02 +0100 |
commit | 66177d7bb656aa6ec49114051aabf764d452038c (patch) | |
tree | c4b82e6d9cace9335485b81ab73a8a7f807e76ed /source/static/templates | |
parent | Updated link to the picture in the authentication page. (diff) | |
download | newspipe-66177d7bb656aa6ec49114051aabf764d452038c.tar.gz newspipe-66177d7bb656aa6ec49114051aabf764d452038c.tar.bz2 newspipe-66177d7bb656aa6ec49114051aabf764d452038c.zip |
The plain_text views and plain_text template has been removed. There is now alink in the /article page to see the content of the article in plain text.
Diffstat (limited to 'source/static/templates')
-rw-r--r-- | source/static/templates/article.html | 2 | ||||
-rw-r--r-- | source/static/templates/plain_text.html | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/source/static/templates/article.html b/source/static/templates/article.html index 9225993a..123aaa9f 100644 --- a/source/static/templates/article.html +++ b/source/static/templates/article.html @@ -19,7 +19,7 @@ </div> <hr /> - <a href="/plain_text/${feed['feed_id']}:${article['article_id']}">Plain text</a> + <a href="/article/${feed['feed_id']}:${article['article_id']}/?plain_text=1">Plain text</a> - <a href="/epub/${feed['feed_id']}:${article['article_id']}">Export to EPUB</a> <br /> <a href="${article['article_link']}">Complete story</a> diff --git a/source/static/templates/plain_text.html b/source/static/templates/plain_text.html deleted file mode 100644 index 44b7da91..00000000 --- a/source/static/templates/plain_text.html +++ /dev/null @@ -1,5 +0,0 @@ -## plain_text.html -<%inherit file="base.html"/> -<div class="left inner"> - <h1><i>${article_title}</i> from <a href="/articles/%s">${feed_title}</a></h1><br /> - ${description}
\ No newline at end of file |