2026-05-20 02:35:48 +00:00

39 lines
1.3 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>Hamro Karma | Smart Shopping</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=Manrope:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{% static 'css/style.css' %}">
<link rel="stylesheet" href="{% static 'css/navbar.css' %}">
<link rel="stylesheet" href="{% static 'css/footer.css' %}">
{% block extra_head %}{% endblock %}
</head>
<body>
<div class="sticky-header">
{% include 'includes/navbar.html' %}
</div>
<main class="site-main">
{% if messages %}
<div class="message-panel">
{% for message in messages %}
<div class="message {{ message.tags }}">{{ message }}</div>
{% endfor %}
</div>
{% endif %}
{% block content %}{% endblock %}
</main>
{% include 'includes/footer.html' %}
<script src="{% static 'js/app.js' %}?v=20260519"></script>
<script src="{% static 'js/animation.js' %}?v=20260519"></script>
</body>
</html>