32 lines
879 B
HTML
32 lines
879 B
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<title>Movies List - {% block title %} {% endblock title %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.jpg') }}">
|
|
</head>
|
|
<body>
|
|
<h1>Movies List</h1>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="{{ url_for('pages.to_watch') }}">Movie List</a></li>
|
|
<li><a href="{{ url_for('pages.watched') }}">Watched Movies</a></li>
|
|
<li><a href="{{ url_for('pages.manage') }}">Manage</a></li>
|
|
{% block navigation %}{% endblock navigation %}
|
|
</ul>
|
|
</nav>
|
|
<section>
|
|
<header>
|
|
{% block header %}{% endblock header %}
|
|
</header>
|
|
<main>
|
|
{% block content %}{% endblock content %}
|
|
</main>
|
|
</section>
|
|
<script>
|
|
{% block script %}{%endblock script %}
|
|
</script>
|
|
</body>
|
|
</html>
|