PollVerlaine/views/layout.php

16 lines
404 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" />
<title>Poll Verlaine</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-12 14:30:38 +02:00
</head>
<body>
<?= $body_content ?>
<footer>
<a>I am on GitHub!</a>
</footer>
</body>
</html>