19 lines
816 B
PHP
19 lines
816 B
PHP
<h1 class="titlePage">Changelog</h1>
|
|
<p class="subtitlePage">Visualizza tutti gli ricevuti</p>
|
|
|
|
<?php
|
|
foreach($changelog->version as $version){
|
|
echo "<hr>";
|
|
echo "<p class=\"changelogTitle\">Versione ".$version->number."</p>";
|
|
foreach($version->logs->log as $log_print){
|
|
echo "<p class=\"changelogList\">• ".$log_print."</p>";
|
|
}
|
|
}
|
|
?>
|
|
|
|
<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>
|