diff options
Diffstat (limited to 'website/app/templates/no.html')
-rw-r--r-- | website/app/templates/no.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/website/app/templates/no.html b/website/app/templates/no.html new file mode 100644 index 0000000..e1b9238 --- /dev/null +++ b/website/app/templates/no.html @@ -0,0 +1,23 @@ +<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='styles/default.css') }}"> +<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='styles/no.css') }}"> + +{% extends "base.html" %} +{% block content %} + +<div> + <a href="{{ url_for('yes') }}" class="tab-yes"></a> + <a href="{{ url_for('home') }}" class="tab-home"></a> + + <div class="main"> + {% for post in posts %} + <div class="post"> + <h1>{{post.author}}</h1> + <h2>{{post.date}}</h2> + <p>{{post.content}}</p> + </div> + {% endfor %} + </div> +</div> + + +{% endblock content %} |