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

22 lines
478 B
PHP
Executable File

<?php
$template = <<<TMP
<div id="articleComment">
<div class="left">
<img src="../Resources/Images/Avatars/{{{a}}}" alt="{{{u}}}" title="{{{u}}}" />
<a href="#">{{{u}}}</a>
</div>
<div class="right" style="position: relative; height: 100%; display: block;">
<p style="padding: 8px 8px 8px 0px;">
{{{c}}}
</p>
</div>
<div class="clear"> </div>
<span class="footer"> Posted on {{{d}}}</span>
<div class="clear"> </div>
</div>
TMP;
?>