summaryrefslogtreecommitdiff
path: root/app/templates/no.html
blob: f7a2d53adc458b1c030c7ee89379c6c23114a150 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<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">
        <div class="feed-archive">
            {% for archive in archive %}
            <div class="archive">
                <h1>{{archive.author}}</h1>
                <h2>{{archive.date}}</h2>
                <p>{{archive.content}}</p>
            </div>
            {% endfor %}
        </div>
    </div>
</div>

{% endblock content %}
Copyright 2019--2024 Marius PETER