mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
22 lines
621 B
PHP
22 lines
621 B
PHP
<div class="container">
|
|
<h2><?php echo $page_title; ?></h2>
|
|
|
|
<?php
|
|
if ($hamsofnote) {
|
|
echo '<table class="table table-striped table-hover">';
|
|
echo '<tr><th>'.__('Callsign').'</th><th>'.__('Name / Description').'</th></tr>';
|
|
foreach ($hamsofnote as $hamofnote) {
|
|
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>' ;
|
|
}
|
|
echo '</table>';
|
|
} else {
|
|
echo 'No updates found or file could not be parsed.';
|
|
}
|
|
?>
|
|
|
|
</div>
|