mauflix/source/templates/base.html

27 lines
913 B
HTML
Raw Normal View History

2020-12-05 19:38:14 -06:00
<!DOCTYPE HTML>
<html>
<head>
2022-11-17 17:51:43 -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' %}">
<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>
2020-12-05 19:38:14 -06:00
</head>
<body>
2022-11-17 17:51:43 -06:00
<section class="hero is-small is-info">
<div class="hero-body has-text-centered">
2023-01-20 16:01:45 -06:00
<p>Mauflix. Otras plataformas tienen todas las películas, excepto las que nos gustan :)</p>
2020-12-05 19:38:14 -06:00
</div>
2022-11-17 17:51:43 -06:00
</section>
{% include 'nav.html' %}
<section id="main">
{% block content %}{% endblock %}
</section>
{% include 'footer.html' %}
2020-12-05 19:38:14 -06:00
</body>
</html>