MS-Tropical/app/templates/blog/read.php
2024-06-29 11:49:05 -05:00

29 lines
499 B
PHP
Executable File

<section id="body">
<div style="width: 100%; margin-bottom: 4px; height: 1px;">&nbsp;</div>
<section id="leftColumn">
<h1>Mad Splash Blog</h1>
<?php
if(!empty($_GET['article'])) {
$id = $_GET['article'];
} else {
$id = 1;
}
$display->articleForReading($id);
?>
</section>
<section id="rightColumn2">
<section>
<h1>Featured</h1>
<?php
$display->sideFeatured("Article");
?>
</section>
</section>
<div class="clear"> </div>
</section>