blob: 5bb7a0f7784857fb5b7069d8678b13a4d1d5ef21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<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">
<p>
Tell me, no
</p>
</div>
</div>
{% endblock content %}
|