mirror of
https://git.cant.at/Madeorsk/PollVerlaine
synced 2024-11-01 12:14:32 +01:00
16 lines
404 B
PHP
16 lines
404 B
PHP
<?php require __DIR__ . "/../config/app.php"; ?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Poll Verlaine</title>
|
|
<link rel="stylesheet" type="text/css" href="<?= $VERLAINE["app_url"] ?>/static/css/main.css" />
|
|
</head>
|
|
<body>
|
|
<?= $body_content ?>
|
|
<footer>
|
|
<a>I am on GitHub!</a>
|
|
</footer>
|
|
</body>
|
|
</html>
|