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.
30 lines
1023 B
30 lines
1023 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>P.u.s.h.i.n.g.S.c.o.r.e.s</title>
|
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container">
|
|
<h1 class="logo">P.u.s.h.i.n.g.S.c.o.r.e.s</h1>
|
|
<strong><nav>
|
|
<ul class="menu">
|
|
<li><a href="{{ url_for('home') }}">Maybe all links for home page</a></li>
|
|
<li><a href="{{ url_for('about') }}">About</a></li>
|
|
<li><a href="{{ url_for('description') }}">Maybe we cut out this link</a></li>
|
|
<li><a href="{{ url_for('listofwords') }}">Dunno if useful?</a></li>
|
|
<li><a href="{{ url_for('get_file') }}">:-) Pushiiing</a></li>
|
|
</ul>
|
|
</nav></strong>
|
|
</div>
|
|
</header>
|
|
<div class="container">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|