81 lines
2.8 KiB
HTML
81 lines
2.8 KiB
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en" data-bs-theme="light">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta content='maximum-scale=1.0, initial-scale=1.0, width=device-width' name='viewport'>
|
|
<meta name="description"
|
|
content="Página para consultar el menú del día de la FIC, frases de nuestro querido camarero Lázaro, y otras funcionalidades">
|
|
<meta name="author" content="peprolinbot">
|
|
|
|
<!-- Favicon -->
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'main/img/favicon/apple-touch-icon.png' %}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'main/img/favicon/favicon-32x32.png' %}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'main/img/favicon/favicon-16x16.png' %}">
|
|
<link rel="icon" href="{% static 'main/img/favicon/favicon.ico' %}" type="image/x-icon">
|
|
|
|
<!-- PWA -->
|
|
<link rel="manifest" href="{% static 'main/pwa/site.webmanifest' %}">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="application-name" content="caFICtería-aaS">
|
|
<meta name="apple-mobile-web-app-title" content="caFICtería-aaS">
|
|
<meta name="theme-color" content="#006E77">
|
|
<meta name="msapplication-navbutton-color" content="#006E77">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<meta name="msapplication-starturl" content="/">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
|
|
|
<title>{% block title %}caFICtería-aaS{% endblock %}</title>
|
|
|
|
<!-- CSS stuff
|
|
================================================== -->
|
|
|
|
<!-- Bootstrap -->
|
|
{% load django_bootstrap5 %}
|
|
{% bootstrap_css %}
|
|
|
|
<!-- Custom CSS -->
|
|
<link href="{% static 'main/css/base.css' %}" rel="stylesheet">
|
|
{% block css %}{% endblock %}
|
|
|
|
|
|
<!-- JavaScript stuff
|
|
================================================== -->
|
|
|
|
<!-- jQuery -->
|
|
<script src="{% static 'main/js/libs/jquery.min.js' %}"></script>
|
|
|
|
<!-- Bootstrap -->
|
|
{% bootstrap_javascript %}
|
|
|
|
<!-- Custom JS -->
|
|
{% block js %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
{% block navbar %}
|
|
{% include 'main/_items/navbar.html' %}
|
|
{% endblock %}
|
|
|
|
<div id="content-wrapper" class="container-fluid">
|
|
{% if messages %}
|
|
<div id="bootstrapMessagesDiv" class="px-2 pt-3">{% bootstrap_messages %}</div>
|
|
{% endif %}
|
|
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
<footer class="footer text-center">
|
|
<hr class="mx-5">
|
|
<p>Hecho con ❤️ por <b>peprolinbot</b> - <a href="https://git.peprolinbot.com/peprolinbot/caFICteria-aaS"
|
|
target="_blank">Código fuente</a>
|
|
</p>
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |