mauflix/source/templates/base.html

27 lines
904 B
HTML
Raw Normal View History

2020-12-05 19:38:14 -06:00
<!DOCTYPE HTML>
<html>
<head>
2022-11-08 20:57:16 -06:00
<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' %}">
2022-11-16 14:47:09 -06:00
<link rel="stylesheet" href="{% static 'css/bulma.min.css' %}">
<link rel="stylesheet" href="{% static 'css/bulma.darkly.min.css' %}">
2022-11-08 20:57:16 -06:00
<link rel="stylesheet" href="{% static 'css/main.css' %}">
<script type="text/javascript" src="{% static 'js/main.js' %}"></script>
2020-12-05 19:38:14 -06:00
</head>
<body>
2022-11-08 20:57:16 -06:00
<section class="hero is-small is-info">
<div class="hero-body has-text-centered">
<p>Otras plataformas tienen todas las películas, excepto las que nos gustan :)</p>
</div>
</section>
2022-11-15 20:17:04 -06:00
{% include 'nav.html' %}
2022-11-08 20:57:16 -06:00
<section id="main">
{% block content %}{% endblock %}
</section>
2022-11-15 20:17:04 -06:00
{% include 'footer.html' %}
2020-12-05 19:38:14 -06:00
</body>
</html>