PollVerlaine/views/layout.php

19 lines
566 B
PHP
Raw Normal View History

2018-08-26 12:04:29 +02:00
<?php require __DIR__ . "/../config/app.php"; ?>
2018-08-12 14:30:38 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2019-02-24 14:52:23 +01:00
<title>Poll Verlaine<?= isset($title) ? " - ".$title : "" ?></title>
2018-08-26 12:04:29 +02:00
<link rel="stylesheet" type="text/css" href="<?= $VERLAINE["app_url"] ?>/static/css/main.css" />
2018-08-28 10:37:32 +02:00
<?php if(isset($head)): ?>
<?= $head ?>
<?php endif; ?>
2018-08-12 14:30:38 +02:00
</head>
<body>
<?= $body_content ?>
<footer>
2019-02-24 13:57:50 +01:00
<a href="https://git.cant.at/Madeorsk/PollVerlaine" target="_blank">Here is my code!</a>
2018-08-12 14:30:38 +02:00
</footer>
</body>
</html>