mauflix/source/templates/base.html

27 lines
913 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MauFlix</title>
{% load static %}
<link rel="shortcut icon" href="{% static 'img/favicon.png' %}">
<link rel="stylesheet" href="{% static 'css/bulma.min.css' %}">
<link rel="stylesheet" href="{% static 'css/bulma.darkly.min.css' %}">
<link rel="stylesheet" href="{% static 'css/main.css' %}">
<script type="text/javascript" src="{% static 'js/main.js' %}"></script>
</head>
<body>
<section class="hero is-small is-info">
<div class="hero-body has-text-centered">
<p>Mauflix. Otras plataformas tienen todas las películas, excepto las que nos gustan :)</p>
</div>
</section>
{% include 'nav.html' %}
<section id="main">
{% block content %}{% endblock %}
</section>
{% include 'footer.html' %}
</body>
</html>