You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
721 B
PHTML
21 lines
721 B
PHTML
6 years ago
|
<footer>
|
||
|
|
||
|
<p>Správce témto stránky je <a href="mailto:honzavais+seznamovakweb@gmail.com">Jan Vais</a> </p>
|
||
|
<p>
|
||
|
Poslední změna: <?php
|
||
|
// outputs e.g. somefile.txt was last modified: December 29 2002 22:16:23.
|
||
|
|
||
|
$filename = 'index.php';
|
||
|
if (file_exists($filename)) {
|
||
|
echo date ("d. m. Y", filemtime($filename));
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
</p>
|
||
|
|
||
|
<p>© 2015 - <?php echo date('Y');?> Studentské oborové rady PedF UK - <a href="http://pedf.cuni.cz">Pedagogická fakulta Univerzity Karlovy</a></p>
|
||
|
<p>Vytvořil: <a href="mailto:webmaster@jezura.cz">Michal Dudek</a> - <a href="http://jezura.cz">Ježura.cz</a></p>
|
||
|
</footer>
|
||
|
</body>
|
||
|
</html>
|