vers. 2.5.1

This commit is contained in:
2026-06-24 21:25:46 +02:00
parent cea22d4dd4
commit 91481768fb
14 changed files with 1523 additions and 584 deletions
+10 -13
View File
@@ -5,12 +5,16 @@
$stations = loadTvStations();
?>
<h1 class="titlePage">TV</h1>
<p class="subtitlePage">Seleziona la webtv che vuoi guardare</p>
<div class="radio-header" style="padding: 20px; margin: 0 0 20px 0; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between;position: sticky;top: 0px;background: white;">
<div class="left-controls" style="display: flex; align-items: center;">
<a href="<?php echo $base_path; ?>/home" data-page="home" class="linkBox" style="color: #333; display: flex; align-items: center; text-decoration: none;">
<span class="material-icons" style="font-size: 28px;">arrow_back</span>
</a>
<span style="font-size: 18px; font-weight: 600; color: #333; margin-left: 15px;">TV</span>
</div>
</div>
<hr>
<div class="stationList">
<div class="stationList px-4">
<div class="row g-2">
<?php foreach ($stations as $station): ?>
<div class="col-6">
@@ -22,11 +26,4 @@ $stations = loadTvStations();
</div>
<?php endforeach; ?>
</div>
</div>
<a href="<?php echo $base_path; ?>/home" data-page="home" class="linkBox mt-3">
<div class="clickBox mt-5 mb-4">
<svg class="w-6 h-6 text-gray-800 dark:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 12h14M5 12l4-4m-4 4 4 4"/></svg>
Torna alla Home
</div>
</a>
</div>