13 lines
419 B
PHP
13 lines
419 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<title><?php echo $page->title; ?></title>
|
|
<link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates?>styles/main.css" />
|
|
</head>
|
|
<body>
|
|
<h1><?php echo $page->title; ?></h1>
|
|
<?php if($page->editable()) echo "<p><a href='$page->editURL'>Edit</a></p>"; ?>
|
|
|
|
</body>
|
|
</html>
|