2019-04-04 12:48:53 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2019-05-21 11:54:11 +02:00
|
|
|
<meta charset="utf-8">
|
2019-05-13 01:45:35 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2019-05-21 11:54:11 +02:00
|
|
|
<title>P.u.s.h.i.n.g.S.c.o.r.e.s</title>
|
2019-04-04 12:48:53 +02:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
2019-05-20 15:56:54 +02:00
|
|
|
|
|
|
|
<div class="index">
|
|
|
|
{% block index %}
|
|
|
|
{% endblock index %}
|
|
|
|
</div>
|
|
|
|
|
2019-04-04 12:48:53 +02:00
|
|
|
<div class="container">
|
2019-05-12 19:18:58 +02:00
|
|
|
<h1 class="logo">P.u.s.h.i.n.g.S.c.o.r.e.s</h1>
|
2019-04-04 12:48:53 +02:00
|
|
|
<strong><nav>
|
|
|
|
<ul class="menu">
|
|
|
|
<li><a href="{{ url_for('about') }}">About</a></li>
|
2019-05-14 00:13:32 +02:00
|
|
|
<li><a href="{{ url_for('home') }}">All links for home page</a></li>
|
|
|
|
<li><a href="{{ url_for('listofwords') }}">Details of navigation</a></li>
|
|
|
|
<li><a href="{{ url_for('get_file') }}">Generate the score</a></li>
|
2019-04-04 12:48:53 +02:00
|
|
|
</ul>
|
|
|
|
</nav></strong>
|
|
|
|
</div>
|
|
|
|
</header>
|
2019-05-24 16:59:49 +02:00
|
|
|
<div>
|
|
|
|
{{ functionsession }}
|
|
|
|
</div>
|
2019-04-04 12:48:53 +02:00
|
|
|
<div class="container">
|
|
|
|
{% block content %}
|
2019-05-20 15:56:54 +02:00
|
|
|
{% endblock content %}
|
2019-04-04 12:48:53 +02:00
|
|
|
</div>
|
|
|
|
</body>
|
2019-04-17 17:59:25 +02:00
|
|
|
</html>
|