35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
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>My App</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="{% static 'css/custom.css' %}">
|
|
</head>
|
|
<body class="dark-mode">
|
|
<div class="container">
|
|
<header class="d-flex justify-content-between align-items-center py-4">
|
|
<a href="/" class="logo">My App</a>
|
|
<nav>
|
|
<a href="#">Home</a>
|
|
<a href="#">About</a>
|
|
<a href="#">Contact</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</main>
|
|
|
|
<footer class="text-center py-4">
|
|
<p>© 2025 My App. All rights reserved.</p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |