hyteck-blog/static/views/body.php
2019-11-12 12:17:21 +01:00

14 lines
193 B
PHP

<body>
<?php
if ((isset($this->error)) and ($this->error != "")){
echo "<div id=error>";
echo $this->error;
echo "</div>";
}
echo "<div id=content>";
echo $this->output;
echo "</div>";
?>