pile/www/_templates/full_text.php

41 lines
830 B
PHP
Raw Normal View History

2017-03-07 09:38:47 +01:00
<!DOCTYPE html>
<html lang="en">
2018-07-31 15:58:23 +02:00
<head>
<meta charset="utf-8">
<?php if (isset($redirect)): ?>
<meta http-equiv="refresh" content="1;URL=<?= $redirect ?>"/>
<?php endif; ?>
2017-03-07 09:38:47 +01:00
2018-07-31 15:58:23 +02:00
<title>The /-\ pile</title>
2017-03-07 09:38:47 +01:00
2018-07-31 15:58:23 +02:00
<link rel="stylesheet" type="text/css" href="assets/main.css">
2019-05-17 10:02:04 +02:00
<link rel="icon" type="image/png" href="/favicon.png">
2018-07-31 15:58:23 +02:00
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: table
}
2017-03-07 09:38:47 +01:00
2018-07-31 15:58:23 +02:00
body p {
font-size: 3rem;
text-align: center;
}
div {
display: table-cell;
text-align: center;
vertical-align: middle;
}
</style>
</head>
<body>
<div>
<p>
<?= $text ?>
</p>
</div>
</body>
2017-03-07 09:38:47 +01:00
</html>