django-multipage-template-f.../app/app_template/templates/base.html

23 lines
779 B
HTML
Raw Normal View History

2022-04-19 21:14:01 +02:00
{% load static %}
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>Example website</title>
<link rel="stylesheet" href="{% static 'css/main.css' %}">
2022-04-19 21:51:43 +02:00
<script type="module" src="{% static 'js/main.js' %}"></script>
2022-04-19 21:14:01 +02:00
</head>
<body
data-host="{{ request.get_host }}"
data-scheme="{{ request.scheme }}"
>
<div class="container">
<header>
2022-04-19 21:51:43 +02:00
<nav id="nav" class="nav" data-controller="navbar">{% include 'components/_nav.html' %}</nav>
2022-04-19 21:14:01 +02:00
</header>
<main id="main">{% include page %}</main>
<footer class="footer">My footer</footer>
</div>
</body>
</html>