aboutsummaryrefslogtreecommitdiff
path: root/source/templates/plain_text.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2012-11-21 13:39:23 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2012-11-21 13:39:23 +0100
commit66690cfe484256d387bde855aba20963f6900de4 (patch)
treec81e7ce187b188dda9e49c6db00ff82c34f74264 /source/templates/plain_text.html
parentName of the currently consulted article is displayed on the tab. (diff)
downloadnewspipe-66690cfe484256d387bde855aba20963f6900de4.tar.gz
newspipe-66690cfe484256d387bde855aba20963f6900de4.tar.bz2
newspipe-66690cfe484256d387bde855aba20963f6900de4.zip
Created new branch "Mako integration". First test of Mako with the plain_text page.
Diffstat (limited to 'source/templates/plain_text.html')
-rw-r--r--source/templates/plain_text.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/source/templates/plain_text.html b/source/templates/plain_text.html
new file mode 100644
index 00000000..8bd606de
--- /dev/null
+++ b/source/templates/plain_text.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>pyAggr3g470r - News aggregator</title>
+ <link rel="stylesheet" type="text/css" href="/css/style.css" />
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+ <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
+</head>
+<body>
+<div class="left inner">
+ <h1><i>${article_title}</i> from <a href="/articles/%s">${feed_title}</a></h1><br />
+ ${description}
+ <hr />
+ <p>This software is under GPLv3 license. You are welcome to copy, modify or
+ redistribute the source code according to the
+ <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GPLv3</a> license.</p>
+</div>
+</body>
+</html>
bgstack15