quantum-website-2026/django-base.html
2026-04-06 13:27:24 +05:30

26 lines
610 B
HTML

{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}YourSite{% endblock %}</title>
{% block extra_head %}{% endblock %}
</head>
<body>
<!--
Shared Header
Update the src URL below to point to your live static site.
To bust cache after updating header.js, append ?v=2 to the URL.
-->
<script src="https://quantumtaskai.com/header.js"></script>
<main>
{% block content %}{% endblock %}
</main>
{% block extra_scripts %}{% endblock %}
</body>
</html>