timeline/views/post.php
2023-10-19 07:33:50 +02:00

19 lines
No EOL
461 B
PHP

<?php require_once("partials/base.php");
// Get the hash (only post, not replies) as $id from the router
if (!empty($id)) {
$twts = array_filter($twts, function($twt) use ($id) {
return $twt->hash === $id;
});
}
$title = "Post: ".$id." - ".$title;
include 'partials/header.php';
?>
<h2>Post: #<?= $id ?></h2>
<!-- PHP: GET TIMELIE --><?php include 'partials/timeline.php'?>
<!-- PHP: GET FOOTER --><?php include 'partials/footer.php';?>