MS-Tropical/Resources/Templates/articles/articlebody.php
Skylear 7d1d7ff996 Upload the site
All the files associated with the old website :D
2018-03-21 11:13:03 -05:00

15 lines
451 B
PHP
Executable File

<?php
$template = <<<TMP
<h2 class="articleTitle">{{{title}}}</h2>
<p style="padding-left: 12px; margin-bottom: 2px">posted by <a href="#">{{{author}}}</a> on {{{date}}}.</p>
<img class="articleCover" src="{{{cover}}}.png" alt="{{{title}}}" title="{{{title}}}" />
<div class="articleContent">
{{{content}}}
</div>
<div style="height: 12px; background-color: #ddd; margin: 18px 0px; position: relative; right: 8px;">&nbsp;</div>
TMP;
?>