75 lines
3.2 KiB
HTML
75 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}Lili Records Radio{% endblock %}</title>
|
|
{% if project_description %}
|
|
<meta name="description" content="{{ project_description }}">
|
|
{% endif %}
|
|
{% load static %}
|
|
<!-- Google Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Righteous&display=swap" rel="stylesheet">
|
|
<!-- Bootstrap 5 -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<link rel="stylesheet" href="{% static 'css/custom.css' %}?v={{ deployment_timestamp }}">
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body class="bg-dark text-white" style="font-family: 'Poppins', sans-serif;">
|
|
<!-- Background Spinning Vinyl -->
|
|
<div class="bg-vinyl-wrapper">
|
|
<div class="bg-vinyl">
|
|
<div class="bg-vinyl-label">
|
|
<img src="/assets/pasted-20260130-141153-87077408.jpg" alt="Logo">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-transparent border-bottom border-secondary">
|
|
<div class="container">
|
|
<a class="navbar-brand d-flex align-items-center" href="/" style="font-family: 'Righteous', cursive; font-size: 1.8rem; color: #FF007F;">
|
|
<img src="/assets/pasted-20260130-141153-87077408.jpg" alt="Lili Records Logo" height="50" class="me-2 rounded-circle">
|
|
Lili Records Radio
|
|
</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="/">Home</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/admin/">Admin</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<footer class="py-4 border-top border-secondary mt-5">
|
|
<div class="container text-center">
|
|
<div class="mb-3">
|
|
<a href="https://wa.me/5359177041" target="_blank" class="text-decoration-none text-white fs-5 mx-2 whatsapp-footer">
|
|
<i class="fab fa-whatsapp me-2" style="color: #25D366;"></i>+53 59177041
|
|
</a>
|
|
</div>
|
|
<p class="text-secondary small mb-0">© 2026 Lili Records Radio. Spin your vibes.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Floating WhatsApp Button -->
|
|
<a href="https://wa.me/5359177041" class="whatsapp-float shadow-lg" target="_blank">
|
|
<i class="fab fa-whatsapp my-float"></i>
|
|
</a>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html> |