A privacy respecting, self-hosted weather website
https://serenum.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
952 B
45 lines
952 B
<?php
|
|
|
|
echo '</main>';
|
|
|
|
|
|
|
|
echo '<footer>';
|
|
echo '<div class="links">';
|
|
echo '<a href="'.url('').'">';
|
|
echo $lang->footer->link_weather;
|
|
echo '</a>';
|
|
|
|
echo '<a href="'.url('settings').'">';
|
|
echo $lang->footer->link_settings;
|
|
echo '</a>';
|
|
|
|
echo '<a href="'.url('about').'">';
|
|
echo $lang->footer->link_about;
|
|
echo '</a>';
|
|
|
|
echo '<a href="'.url('faq').'">';
|
|
echo $lang->footer->link_faq;
|
|
echo '</a>';
|
|
|
|
echo '<a href="'.url('privacy').'">';
|
|
echo $lang->footer->link_privacy;
|
|
echo '</a>';
|
|
|
|
/* echo '<a href="'.url('api').'">';
|
|
echo $lang->footer->link_api;
|
|
echo '</a>'; */
|
|
echo '</div>';
|
|
|
|
echo '<div class="text">';
|
|
echo $lang->footer->data_from.' '.link_('OpenWeatherMap', 'https://openweathermap.org').'.';
|
|
echo '</div>';
|
|
echo '</footer>';
|
|
echo '</section>';
|
|
|
|
|
|
|
|
echo '</body>';
|
|
echo '</html>';
|
|
|
|
?>
|