STB/blog/views/post/index_c.php

43 lines
1.2 KiB
PHP
Executable File

<?php
$thisPage="blog";
$thissheet = "/index_c";
include __DIR__ . "/../layout/header.php";
include __DIR__ . "./../../views/layout/css/navi.css";
include __DIR__ . "/../layout/navigation.php";
//unset($_SESSION['login']);
?>
<div class="container">
<div class="starter-template">
<h1>Haralds Blog</h1>
<p class="lead">In diesem Blog können Sie Kommentare zur Gestaltung meiner Seite abgeben oder </br>
ergänzende Informationen zu Personen eintragen sowie fehlerhafte Daten kommentieren.</p>
<ul>
<?php foreach ($posts as $post): ?>
<li>
<a href="post?id=<?php echo e($post['id']); ?>">
<?php echo e($post['title']); ?>
</a>
</li>
<?php endforeach;?>
</ul>
<?php/*
<ul>
<?php foreach ($all AS $entry): ?>
<li>
<a href="posts-edit_c?id=<?php echo e($entry->id); ?>">
<?php echo e($entry->title); ?>
</a>
</li>
<?php endforeach; ?>
</ul>
*/?>
</div>
</div>
<?php
include __DIR__ . "/../layout/footer.php";
?>