2025-03-21 11:01:54 +01:00
|
|
|
<div class="container">
|
|
|
|
|
<h2><?php echo $page_title; ?></h2>
|
|
|
|
|
|
|
|
|
|
<?php
|
2025-03-21 12:10:32 +01:00
|
|
|
if ($hamsofnote) {
|
2025-03-21 11:01:54 +01:00
|
|
|
echo '<table class="table table-striped table-hover">';
|
2025-03-21 12:10:32 +01:00
|
|
|
echo '<tr><th>'.__('Callsign').'</th><th>'.__('Name / Description').'</th></tr>';
|
|
|
|
|
foreach ($hamsofnote as $hamofnote) {
|
2025-04-17 08:07:21 +02:00
|
|
|
echo '<tr><td>'.$hamofnote['callsign'].'</td><td>'.$hamofnote['name'];
|
|
|
|
|
if ($hamofnote['link'] != '') {
|
|
|
|
|
echo '<a target="_blank" href="'.$hamofnote['link'].'">'.$hamofnote['linkname'].'</a>';
|
|
|
|
|
}
|
|
|
|
|
echo '</td></tr>' ;
|
2025-03-21 11:01:54 +01:00
|
|
|
}
|
|
|
|
|
echo '</table>';
|
|
|
|
|
} else {
|
|
|
|
|
echo 'No updates found or file could not be parsed.';
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
</div>
|