20 lines
389 B
PHP
20 lines
389 B
PHP
<!--
|
|
Seite: Anzeige für Beiträge
|
|
Funktion: Stellt einen übergebenen Beitrag dar.
|
|
-->
|
|
|
|
<?php
|
|
echo __DIR__ . '/../php/controller/showArticle-controller.php';
|
|
include_once __DIR__ . '/../php/controller/showArticle-controller.php';
|
|
?>
|
|
<main>
|
|
|
|
<h1><?php if (isset($title)) {echo $title;} ?></h1>
|
|
|
|
<p>
|
|
<?php if (isset($content)) {echo $content;} ?>
|
|
</p>
|
|
|
|
</main>
|
|
|