Accords-CMS/public/news.php

24 lines
387 B
PHP
Raw Permalink Normal View History

2021-10-14 08:41:30 +00:00
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
2022-01-01 12:12:34 +00:00
<?php require_once($_SERVER["DOCUMENT_ROOT"] . "/../php/tools/pages.php") ?>
<?php
if (isset($_GET['slug'])) {
$slug = substr($_GET['slug'], 6);
$page = new Page($slug);
2021-10-14 08:41:30 +00:00
echo $page->parse();
}
?>
</body>
</html>