mirror of
https://github.com/thecyberlearn/quantum-website-2026.git
synced 2026-08-18 10:03:21 +00:00
26 lines
610 B
HTML
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>
|