blob: e1b9238592c2b38572bd121c3226e63830e8b4f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 %}
|