PushingScores/templates/layout.html

38 lines
1.1 KiB
HTML
Raw Normal View History

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-27 17:32:05 +02:00
<title>Pushing Scores</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
2019-04-04 12:48:53 +02:00
<div class="container">
2019-05-27 17:32:05 +02:00
<div id="logobox">
<h1 class="logo"><a href="{{ url_for('home') }}">Pushing Scores</a></h1>
</div>
2019-04-04 12:48:53 +02:00
<strong><nav>
<ul class="menu">
<li><a href="{{ url_for('about') }}">About</a></li>
2019-05-27 17:32:05 +02:00
<li><a href="{{ url_for('index') }}">Index</a></li>
<li><a href="{{ url_for('get_file') }}">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 %}
2019-05-27 20:17:45 +02:00
<span class="word">{{ item }} ▶ </span>
2019-05-26 20:34:46 +02:00
{% 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>