hyteck-blog/static/views/body.php

14 lines
193 B
PHP
Raw Normal View History

2019-11-12 11:17:21 +00:00
<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>";
?>