mirror of
https://git.cant.at/Madeorsk/PollVerlaine
synced 2024-11-01 03:24:31 +01:00
Madeorsk
b763b1d9e6
* Moved colors to $VERLAINE configuration variable. * Colors in the options table result. * Organized CSS in several files. + Responsive design!
15 lines
328 B
PHP
15 lines
328 B
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="/static/css/main.css" />
|
|
</head>
|
|
<body>
|
|
<?= $body_content ?>
|
|
<footer>
|
|
<a>I am on GitHub!</a>
|
|
</footer>
|
|
</body>
|
|
</html>
|