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-26 20:34:46 +02:00
|
|
|
<h1 class="logo"><a href="{{ url_for('home') }}">P.u.s.h.i.n.g.S.c.o.r.e.s</a></h1>
|
2019-04-04 12:48:53 +02:00
|
|
|
<strong><nav>
|
|
|
|
<ul class="menu">
|
2019-05-27 12:05:42 +02:00
|
|
|
<li><a href="{{ url_for('index') }}">Index</a></li>
|
2019-04-04 12:48:53 +02:00
|
|
|
<li><a href="{{ url_for('about') }}">About</a></li>
|
2019-05-14 00:13:32 +02:00
|
|
|
<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-26 20:34:46 +02:00
|
|
|
<div id="thewordpath">
|
|
|
|
{% for item in functionsession %}
|
|
|
|
<span class="word">{{ item }} > </span>
|
|
|
|
{% endfor %}
|
2019-04-04 12:48:53 +02:00
|
|
|
</div>
|
2019-05-26 20:34:46 +02:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% endblock content %}
|
|
|
|
|
2019-04-04 12:48:53 +02:00
|
|
|
</body>
|
2019-04-17 17:59:25 +02:00
|
|
|
</html>
|