nieuws: first paragraph teaser as page description
[minimedit.git] / head.inc.php
index 5e19024665e5806c53638657671142020309d1d2..1e57e666a369877183a7326fa472bf9a716544db 100644 (file)
@@ -1,20 +1,17 @@
-<?php
-include_once 'head.inc.html';
-
-print "<header>\n";
-include 'menu.html';
-print "</header>\n\n";
-
-print '<div class="article">'."\n\n";
-
-include_once 'auth.inc.php';
-
-register_shutdown_function(function () {
-       print "</div>\n\n";
-       include 'foot.inc.php';
-       print "</body></html>\n";
-});
-
-include "$Page.html";
-if (file_exists("$Page.php")) include_once("$Page.php");
-
+<!DOCTYPE html>
+<html lang="nl">
+<head>
+       <meta charset="utf-8" />
+<?php if (!empty($Place['title'])) { ?>
+       <title><?= htmlspecialchars($Place['title']) ?></title>
+<?php } ?>
+<?php if (!empty($Place['description'])) { ?>
+       <meta name="description" property="og:description" content="<?= strip_tags($Place['description']) ?>" />
+<?php } ?>
+       <meta name="viewport" content="width=device-width" />
+       <!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script><![endif]-->
+<?php if (!empty($Place['image'])) { ?>
+       <meta property="og:image" content="https://<?= $_SERVER['HTTP_HOST'] . htmlspecialchars($Place['image']) ?>" />
+<?php } ?>
+</head>
+<body>