PushingScores/templates/layout.html

27 lines
863 B
HTML
Raw Normal View History

2019-04-04 12:48:53 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PARTOUT TITRE PARTOUT</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
</head>
<body>
<header>
<div class="container">
<h1 class="logo">SUPERB</h1>
<strong><nav>
<ul class="menu">
<li><a href="{{ url_for('home') }}">Home</a></li>
<li><a href="{{ url_for('about') }}">About</a></li>
2019-04-04 13:56:35 +02:00
<li><a href="{{ url_for('description') }}">Description</a></li>
2019-04-04 12:48:53 +02:00
<li><a href="{{ url_for('all') }}">All files</a></li>
</ul>
</nav></strong>
</div>
</header>
<div class="container">
{% block content %}
{% endblock %}
</div>
</body>
</html>