blob: b91522127d504a045f063d30175378890c1de377 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | <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/yes.css') }}">
{% extends "base.html" %}
{% block content %}
<div>
    <a href="{{ url_for('no') }}" class="tab-no"></a>
    <a href="{{ url_for('home') }}" class="tab-home"></a>
    <div class="main">
        <p> yes, no?</p>
    </div>
</div>
{% endblock content %}
 |