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.
34 lines
1.1 KiB
34 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title><a href="">P.u.s.h.i.n.g.S.c.o.r.e.s</a></title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
|
|
<div class="index">
|
|
{% block index %}
|
|
{% endblock index %}
|
|
</div>
|
|
|
|
<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('about') }}">About</a></li>
|
|
<li><a href="{{ url_for('home') }}">All links for home page</a></li>
|
|
<li><a href="{{ url_for('listofwords') }}">Details of navigation</a></li>
|
|
<li><a href="{{ url_for('get_file') }}">Generate the score</a></li>
|
|
</ul>
|
|
</nav></strong>
|
|
</div>
|
|
</header>
|
|
<div class="container">
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|