matrix-register/static/web.php

40 lines
898 B
PHP

<?php
/**
* file: static/web.php
* date: 06.01.2021
* author: bernd@nr18.space
* desc: Definition einiger Konstanten für die Webseiten
*/
if (!defined('INCLUDES_ALLOWED'))
die('Access denied.');
// HTML
const HTML_META = <<<END
<meta charset="utf-8" />
<meta name="robots" content="noindex/nofollow" />
<link rel="stylesheet" href="./static/register.css" type="text/css" />
<link rel="shortcut icon" href="./static/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1">
END;
const HTML_HEADER = <<<END
<header>
<h1>
<img src="./static/logo.png" alt="Logo Krautspace" width="281" height="58" />
<span id="subtitle">Hackspace Jena e.V.</span>
</h1>
</header>
END;
const HTML_FOOTER = <<<END
<footer>
<p>Krautspace Jena e.V. | 07743 Jena | Krautgasse 26</p>
<p>
<a href="">Impressum</a>
<a href="">Datenschutz</a>
</p>
</footer>
END;