Auto commit: 2026-02-19T14:53:22.571Z
This commit is contained in:
parent
6bd0bb228b
commit
a24dbf6e16
25
.htaccess
Normal file
25
.htaccess
Normal file
@ -0,0 +1,25 @@
|
||||
# Enable Gzip compression
|
||||
<IfModule mod_deflate.c>
|
||||
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript application/x-javascript application/json
|
||||
</IfModule>
|
||||
|
||||
# Browser Caching
|
||||
<IfModule mod_expires.c>
|
||||
ExpiresActive On
|
||||
ExpiresByType image/jpg "access plus 1 year"
|
||||
ExpiresByType image/jpeg "access plus 1 year"
|
||||
ExpiresByType image/gif "access plus 1 year"
|
||||
ExpiresByType image/png "access plus 1 year"
|
||||
ExpiresByType image/webp "access plus 1 year"
|
||||
ExpiresByType text/css "access plus 1 month"
|
||||
ExpiresByType application/pdf "access plus 1 month"
|
||||
ExpiresByType text/javascript "access plus 1 month"
|
||||
ExpiresByType application/javascript "access plus 1 month"
|
||||
ExpiresByType application/x-javascript "access plus 1 month"
|
||||
ExpiresByType application/x-shockwave-flash "access plus 1 month"
|
||||
ExpiresByType image/x-icon "access plus 1 year"
|
||||
ExpiresDefault "access plus 2 days"
|
||||
</IfModule>
|
||||
|
||||
# Disable directory browsing
|
||||
Options -Indexes
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 6.1 MiB After Width: | Height: | Size: 4.9 MiB |
BIN
assets/pasted-20260215-151251-1c7b1936.png.bak
Normal file
BIN
assets/pasted-20260215-151251-1c7b1936.png.bak
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.1 MiB |
20
index.php
20
index.php
@ -1631,7 +1631,7 @@ $twitter_link = "https://twitter.com/";
|
||||
<div id="sticky-now-playing" style="position: fixed; top: 0; left: 0; width: 100%; background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(10px); z-index: 1000; padding: 10px 0; border-bottom: 1px solid rgba(56, 189, 248, 0.3); display: none; animation: slideDown 0.5s ease;">
|
||||
<div style="max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 15px; padding: 0 20px;">
|
||||
<div style="width: 30px; height: 30px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--primary-color); animation: spin-vinyl 30s linear infinite;">
|
||||
<img id="sticky-track-cover" src="./assets/pasted-20260215-163754-def41f49.png" style="width: 100%; height: 100%; object-fit: cover; border-radius: 50%;">
|
||||
<img id="sticky-track-cover" src="./assets/pasted-20260215-163754-def41f49.png" loading="lazy" style="width: 100%; height: 100%; object-fit: cover; border-radius: 50%;">
|
||||
</div>
|
||||
<div style="overflow: hidden; white-space: nowrap; flex: 1; text-align: center;">
|
||||
<span style="color: var(--primary-color); font-weight: 800; font-size: 0.75rem; text-transform: uppercase; margin-right: 10px;">SONANDO:</span>
|
||||
@ -1660,8 +1660,8 @@ $twitter_link = "https://twitter.com/";
|
||||
</a>
|
||||
</div>
|
||||
<div class="logo-wrapper">
|
||||
<img src="./assets/pasted-20260215-163754-def41f49.png" alt="Lili Records Logo" class="brand-logo">
|
||||
<img src="./assets/pasted-20260215-171328-d90df4ce.jpg" alt="Logo Secundario" class="brand-logo">
|
||||
<img src="./assets/pasted-20260215-163754-def41f49.png" alt="Lili Records Logo" class="brand-logo" loading="lazy">
|
||||
<img src="./assets/pasted-20260215-171328-d90df4ce.jpg" alt="Logo Secundario" class="brand-logo" loading="lazy">
|
||||
</div>
|
||||
<h1>Lili Records</h1>
|
||||
<p>Siente la música, vive el ritmo.</p>
|
||||
@ -1690,7 +1690,7 @@ $twitter_link = "https://twitter.com/";
|
||||
<div class="now-playing">
|
||||
<div class="track-cover-container">
|
||||
<i id="cover-placeholder" class="bi bi-broadcast"></i>
|
||||
<img id="track-cover" src="./assets/pasted-20260215-163754-def41f49.png" alt="Cover" crossorigin="anonymous" onerror="this.style.display='none'; document.getElementById('cover-placeholder').style.display='block';">
|
||||
<img id="track-cover" src="./assets/pasted-20260215-163754-def41f49.png" alt="Cover" crossorigin="anonymous" loading="lazy" onerror="this.style.display='none'; document.getElementById('cover-placeholder').style.display='block';">
|
||||
</div>
|
||||
<div class="track-info">
|
||||
<div id="dj-host-container" style="display: flex; align-items: center; gap: 8px;">
|
||||
@ -1822,7 +1822,7 @@ $twitter_link = "https://twitter.com/";
|
||||
}
|
||||
?>
|
||||
<div style="width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--accent-color); padding: 2px; background: var(--glass-bg);">
|
||||
<img src="<?= $fan['photo'] ?? 'assets/pasted-20260215-163754-def41f49.png' ?>" alt="Fan of the Month" style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
|
||||
<img src="<?= $fan['photo'] ?? 'assets/pasted-20260215-163754-def41f49.png' ?>" alt="Fan of the Month" loading="lazy" style="width: 100%; height: 100%; border-radius: 50%; object-fit: cover;">
|
||||
</div>
|
||||
<div style="flex: 1;">
|
||||
<div style="display: flex; justify-content: space-between; align-items: center;">
|
||||
@ -1855,7 +1855,7 @@ $twitter_link = "https://twitter.com/";
|
||||
<!-- Espacio para Código QR -->
|
||||
<div class="payment-section">
|
||||
<div class="qr-placeholder" style="padding: 0; overflow: hidden; background: rgba(255,255,255,0.1);" onclick="openQRModal()">
|
||||
<img src="./assets/pasted-20260216-203652-f5645ae9.jpg" alt="Código QR" style="width: 100%; height: 100%; object-fit: contain; border-radius: 12px;">
|
||||
<img src="./assets/pasted-20260216-203652-f5645ae9.jpg" alt="Código QR" loading="lazy" style="width: 100%; height: 100%; object-fit: contain; border-radius: 12px;">
|
||||
</div>
|
||||
<p style="color: var(--accent-color); font-size: 0.9rem; font-weight: 600; margin-top: 0.5rem; text-transform: uppercase;">
|
||||
Contribuye con tu ayuda a nuestra Web App
|
||||
@ -2110,7 +2110,7 @@ $twitter_link = "https://twitter.com/";
|
||||
<div id="qr-modal" class="qr-modal" onclick="closeQRModal()">
|
||||
<div class="qr-modal-content" onclick="event.stopPropagation()">
|
||||
<span class="qr-modal-close" onclick="closeQRModal()">×</span>
|
||||
<img src="./assets/pasted-20260216-203652-f5645ae9.jpg" alt="QR Ampliado" style="width: 100%; max-width: 400px; height: auto; border-radius: 12px; display: block; margin: 0 auto;">
|
||||
<img src="./assets/pasted-20260216-203652-f5645ae9.jpg" alt="QR Ampliado" loading="lazy" style="width: 100%; max-width: 400px; height: auto; border-radius: 12px; display: block; margin: 0 auto;">
|
||||
<p style="color: #333; text-align: center; margin-top: 1rem; font-weight: 700; font-size: 1.1rem;">¡ÚNETE A NUESTRO WHATSAPP!</p>
|
||||
</div>
|
||||
</div>
|
||||
@ -2177,9 +2177,9 @@ $twitter_link = "https://twitter.com/";
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<audio id="radio-audio" src="https://listen.radioking.com/radio/828046/stream/897251" preload="auto" crossorigin="anonymous"></audio>
|
||||
<audio id="welcome-sound" src="https://assets.mixkit.co/active_storage/sfx/2013/2013-preview.mp3" preload="auto"></audio>
|
||||
<audio id="pop-sound" src="https://assets.mixkit.co/active_storage/sfx/2354/2354-preview.mp3" preload="auto"></audio>
|
||||
<audio id="radio-audio" src="https://listen.radioking.com/radio/828046/stream/897251" preload="none" crossorigin="anonymous"></audio>
|
||||
<audio id="welcome-sound" src="https://assets.mixkit.co/active_storage/sfx/2013/2013-preview.mp3" preload="none"></audio>
|
||||
<audio id="pop-sound" src="https://assets.mixkit.co/active_storage/sfx/2354/2354-preview.mp3" preload="none"></audio>
|
||||
|
||||
<script>
|
||||
const audio = document.getElementById('radio-audio');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user