PushingScores/templates/layout.html

48 lines
1.2 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>
2019-05-20 15:56:54 +02:00
2019-05-29 11:54:46 +02:00
<div id="wrapper">
<div id="top">
<!-- WORDPATH -->
<div id="thewordpath">
{% if functionsession %}[<a href='/clear' title='Clear current score'>x</a>]{% endif %}
2019-05-29 11:54:46 +02:00
{% for item in functionsession %}
<span class="word">{{ item }} ▶ </span>
{% endfor %}
</div>
</div>
2019-05-20 15:56:54 +02:00
2019-05-29 11:54:46 +02:00
<div id="bottom">
<!-- THE REST -->
<header>
<!-- <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-05-29 11:54:46 +02:00
<nav>
2019-04-04 12:48:53 +02:00
<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>
2019-05-29 11:54:46 +02:00
</nav>
<!-- </div> -->
2019-04-04 12:48:53 +02:00
</header>
2019-05-26 20:34:46 +02:00
{% block content %}
{% endblock content %}
2019-05-29 11:54:46 +02:00
</div>
</div>
2019-04-04 12:48:53 +02:00
</body>
2019-04-17 17:59:25 +02:00
</html>