|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Pushing Scores</title>
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="wrapper">
|
|
|
|
|
|
|
|
<div id="top">
|
|
|
|
<!-- WORDPATH -->
|
|
|
|
<div id="thewordpath">
|
|
|
|
{% for item in functionsession %}
|
|
|
|
<span class="word">{{ item }} ▶ </span>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="bottom">
|
|
|
|
<!-- THE REST -->
|
|
|
|
<header>
|
|
|
|
<!-- <div class="container"> -->
|
|
|
|
<div id="logobox">
|
|
|
|
<h1 class="logo"><a href="{{ url_for('home') }}">Pushing Scores</a></h1>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<nav>
|
|
|
|
<ul class="menu">
|
|
|
|
<li><a href="{{ url_for('about') }}">About</a></li>
|
|
|
|
<li><a href="{{ url_for('index') }}">Index</a></li>
|
|
|
|
<li><a href="{{ url_for('get_file') }}">Score</a></li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
<!-- </div> -->
|
|
|
|
</header>
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% endblock content %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|