144 lines
4.9 KiB
HTML
144 lines
4.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}{{ project_name }}{% endblock %}</title>
|
|
|
|
{% if project_description %}
|
|
<meta name="description" content="{{ project_description }}">
|
|
<meta property="og:description" content="{{ project_description }}">
|
|
<meta property="twitter:description" content="{{ project_description }}">
|
|
{% endif %}
|
|
{% if project_image_url %}
|
|
<meta property="og:image" content="{{ project_image_url }}">
|
|
<meta property="twitter:image" content="{{ project_image_url }}">
|
|
{% endif %}
|
|
|
|
{% load static %}
|
|
<!-- Bootstrap 5 CDN -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Google Fonts: Inter & Lexend -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Lexend:wght@400;600;700&display=swap" rel="stylesheet">
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
|
|
|
|
<link rel="stylesheet" href="{% static 'css/custom.css' %}?v={{ deployment_timestamp }}">
|
|
|
|
<style>
|
|
:root {
|
|
--bg-color: #0f172a;
|
|
--card-bg: rgba(30, 41, 59, 0.7);
|
|
--accent-primary: #38bdf8;
|
|
--accent-secondary: #fb7185;
|
|
--text-main: #f8fafc;
|
|
--text-muted: #94a3b8;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-color);
|
|
color: var(--text-main);
|
|
font-family: 'Inter', sans-serif;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
h1, h2, h3, .navbar-brand {
|
|
font-family: 'Lexend', sans-serif;
|
|
}
|
|
|
|
.glass {
|
|
background: var(--card-bg);
|
|
backdrop-filter: blur(12px);
|
|
-webkit-backdrop-filter: blur(12px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 24px;
|
|
}
|
|
|
|
.navbar {
|
|
background: rgba(15, 23, 42, 0.8) !important;
|
|
backdrop-filter: blur(10px);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
.nav-link {
|
|
color: var(--text-muted) !important;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.nav-link:hover, .nav-link.active {
|
|
color: var(--accent-primary) !important;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--accent-primary);
|
|
border: none;
|
|
border-radius: 12px;
|
|
padding: 10px 24px;
|
|
font-weight: 600;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #0ea5e9;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
|
|
}
|
|
|
|
footer {
|
|
margin-top: auto;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
|
padding: 2rem 0;
|
|
color: var(--text-muted);
|
|
font-size: 0.9rem;
|
|
}
|
|
</style>
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-dark sticky-top">
|
|
<div class="container">
|
|
<a class="navbar-brand d-flex align-items-center" href="/">
|
|
<i class="fas fa-compact-disc fa-spin me-2 text-rose" style="--fa-animation-duration: 5s; color: var(--accent-secondary);"></i>
|
|
<span class="fw-bold">Lili Records</span>
|
|
</a>
|
|
<button class="navbar-toggler border-0" 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="/">Inicio</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/admin/">Admin</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="flex-shrink-0">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<footer class="text-center">
|
|
<div class="container">
|
|
<p>© 2026 Lili Record's Radio. Todos los derechos reservados.</p>
|
|
<div class="social-links">
|
|
<a href="#" class="text-muted me-3"><i class="fab fa-instagram"></i></a>
|
|
<a href="#" class="text-muted me-3"><i class="fab fa-twitter"></i></a>
|
|
<a href="#" class="text-muted"><i class="fab fa-facebook"></i></a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
|
|
</html> |