You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
946 B
28 lines
946 B
<!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>
|
|
<li><a href="{{ url_for('description') }}">Description</a></li>
|
|
<li><a href="{{ url_for('all') }}">All files</a></li>
|
|
<li><a href="{{ url_for('listofwords') }}">List of words</a></li>
|
|
</ul>
|
|
</nav></strong>
|
|
</div>
|
|
</header>
|
|
<div class="container">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|