opensmtpdadmin/templates/footer.tpl

12 lines
344 B
Smarty
Raw Normal View History

2022-08-18 14:01:52 +02:00
<div id="footer">
2022-09-02 23:06:08 +02:00
<a href="https://git.high5.nl/opensmtpdadmin/">OpenSMTPD Admin <?php echo VERSION ?></a>
2022-08-18 14:01:52 +02:00
<?php
if (($CONF['show_footer_text'] == "YES") and ($CONF['footer_link'])) {
2022-09-04 11:38:47 +02:00
echo "&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;";
echo "<a href=\"" . $CONF['footer_link'] . "\">" . $CONF['footer_text'] . "</a>\n";
2022-08-18 14:01:52 +02:00
}
?>
</div>
</body>
</html>