22 lines
760 B
PHTML
22 lines
760 B
PHTML
<?php echo $this->doctype() ?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<?php echo $this->headTitle() ?>
|
|
<?php echo $this->headScript() ?>
|
|
<?php echo $this->headLink() ?>
|
|
<?php echo isset($this->google_analytics)?$this->google_analytics:"" ?>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="login-page">
|
|
<?php echo $this->layout()->content ?>
|
|
</div>
|
|
<div class="footer">
|
|
Airtime <?php echo $this->airtimeVersion ?> Copyright © Sourcefabric o.p.s <?php echo $this->airtimeCopyright ?>. All rights reserved.<br/>
|
|
Maintained and distributed under GNU GPL v.3 by <a href="http://www.sourcefabric.org"> Sourcefabric o.p.s </a>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|