12 lines
346 B
Smarty
12 lines
346 B
Smarty
<div id="footer">
|
|
<a href="https://git.high5.nl/opensmtpdadmin/">OpenSMTPD Admin <?php echo VERSION ?></a>
|
|
<?php
|
|
if (($CONF['show_footer_text'] == "YES") and ($CONF['footer_link'])) {
|
|
print " | ";
|
|
print "<a href=\"" . $CONF['footer_link'] . "\">" . $CONF['footer_text'] . "</a>\n";
|
|
}
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html>
|