aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/article.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-10-13 11:51:47 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-10-13 11:51:47 +0200
commit9df5016226fbcf72e135df22fb54ed54c4c5f29a (patch)
treeb1e9b2a7fc9f67cde5f70e98899bfbb092d14244 /pyaggr3g470r/templates/article.html
parentUpdated about page. Readed article title are using h3 headers and unreaded h1... (diff)
downloadnewspipe-9df5016226fbcf72e135df22fb54ed54c4c5f29a.tar.gz
newspipe-9df5016226fbcf72e135df22fb54ed54c4c5f29a.tar.bz2
newspipe-9df5016226fbcf72e135df22fb54ed54c4c5f29a.zip
First prototype for the /article page.
Diffstat (limited to 'pyaggr3g470r/templates/article.html')
-rw-r--r--pyaggr3g470r/templates/article.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/pyaggr3g470r/templates/article.html b/pyaggr3g470r/templates/article.html
new file mode 100644
index 00000000..9c4fe287
--- /dev/null
+++ b/pyaggr3g470r/templates/article.html
@@ -0,0 +1,12 @@
+{% extends "layout.html" %}
+{% block content %}
+<div class="container">
+ <div class="jumbotron">
+ <h1>{{ article.title }}</h1>
+ <h6>{{ article.date }}</h6>
+ </div>
+ <div class="jumbotron">
+ {{ article.content|safe }}
+ </div>
+</div><!-- /.container -->
+{% endblock %} \ No newline at end of file
bgstack15