[Flask] Aggregate your news and vote for the content you care about.
1
<linkrel="stylesheet"type="text/css"href="{{ url_for('static',filename='styles/default.css') }}">
2
<linkrel="stylesheet"type="text/css"href="{{ url_for('static',filename='styles/no.css') }}">
3
4
{% extends "base.html" %}
5
{% block content %}
6
7
<div>
8
<ahref="{{ url_for('yes') }}"class="tab-yes"></a>
9
<ahref="{{ url_for('home') }}"class="tab-home"></a>
10
11
<divclass="main">
12
<divclass="feed-archive">
13
{% for archive in archive %}
14
<divclass="archive">
15
<h1>{{archive.author}}</h1>
16
<h2>{{archive.date}}</h2>
17
<p>{{archive.content}}</p>
18
</div>
19
{% endfor %}
20
</div>
21
</div>
22
</div>
23
24
{% endblock content %}
25