27 lines
1.1 KiB
PHP
27 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en-gb">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title><?=$options[$_GET['r']];?></title>
|
|
<link rel="stylesheet" type="text/css" href="/assets/global.css" />
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/mio.css" />
|
|
<script type="text/javascript" src="/assets/jquery.js"></script>
|
|
<script type="text/javascript" src="/assets/js/flashii.js"></script>
|
|
</head>
|
|
<body>
|
|
<?php include(FII_SRC_DIR . '/mio_bar.php'); ?>
|
|
<a href="/">
|
|
<img class="logo" src="/assets/pixel.png" alt="Flashii" />
|
|
</a><br />
|
|
<div class="mioblog" style="padding:10px;">
|
|
<h3 class="miotitle" style="margin:-10px;margin-bottom: 0px;"><?=$options[$_GET['r']];?></h3>
|
|
<div class="mioboxcontent sub" style="margin:0px;line-height:140%;">
|
|
<?=$parser->text(file_get_contents($readPath));?>
|
|
</div>
|
|
</div>
|
|
<div class="navbar">
|
|
<?php include(FII_SRC_DIR . '/mio_menu.php'); ?>
|
|
</div>
|
|
<?php include(FII_SRC_DIR . '/mio_copyright.php'); ?>
|
|
</body>
|
|
</html>
|