20 lines
373 B
PHP
20 lines
373 B
PHP
<?php
|
|
/**
|
|
* footer.php
|
|
*
|
|
* HTML-Footer, Scripts, evtl. Modale oder Notifications
|
|
* Wird am Ende jeder Seite eingebunden
|
|
*/
|
|
?>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© <?php echo date('Y'); ?> Troy Grunt - NDT</p>
|
|
|
|
<!-- TODO: Optional: Statusanzeige, Debug-Info, Session-Hinweis -->
|
|
</footer>
|
|
|
|
<!-- TODO: evtl. JS für modale Fenster oder Flash Messages -->
|
|
</body>
|
|
</html>
|