function render_article($subject, $article, $info) { global $locale; opentable($subject); echo "<div class='floatfix'>" . ($info['article_breaks'] == "y" ? nl2br($article) : $article) . "</div>\n<div class='news-footer'>\n\t" . articleposter($info, " ·") . articleopts($info, "·") . itemoptions("A", $info['article_id']) . "\n</div>\n"; closetable(); }
function render_article($subject, $article, $info) { echo "<div class='capmain'>{$subject}</div>\n"; echo "<div class='main-body floatfix'>" . ($info['article_breaks'] == "y" ? nl2br($article) : $article) . "</div>\n"; echo "<div class='news-footer'>\n"; echo articleposter($info, "·") . articleopts($info, "·") . itemoptions("A", $info['article_id']); echo "</div>\n"; }
function render_article($subject, $article, $info) { echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n"; echo "<td class='capmain'>" . $subject . "</td>\n"; echo "</tr>\n<tr>\n"; echo "<td class='main-body'>" . ($info['article_breaks'] == "y" ? nl2br($article) : $article) . "</td>\n"; echo "</tr>\n<tr>\n"; echo "<td align='center' class='news-footer'>\n"; echo articleposter($info, " ·") . articleopts($info, "·") . itemoptions("A", $info['article_id']); echo "</td>\n</tr>\n</table>\n"; }
function render_article($subject, $article, $info) { echo "<div class='border tablebreak'>"; // echo "<div class='capmain'>$subject</div>\n"; echo "<table cellpadding='0' cellspacing='0' width='100%' align='center'>\n\t<tr>\n\t<td class='tabletoplinks'></td>\n\t<td class='tabletop'>" . $subject . "</td>\n\t<td class='tabletoprechts'></td>\n\t</tr></table>"; // ende meins echo "<div class='main-body floatfix'>" . ($info['article_breaks'] == "y" ? nl2br($article) : $article) . "</div>\n"; echo "<div class='news-footer'>\n"; echo articleposter($info, "·") . articleopts($info, "·") . itemoptions("A", $info['article_id']); echo "</div>\n"; echo "</div>"; }
function render_article($subject, $article, $info) { echo "<table width='100%' cellpadding='0' cellspacing='0'>\n<tr>\n"; echo "<td><img src='" . THEME . "/images/pfboxcapleft.jpg' alt='image' /></td>\n"; echo "<td class='capmain' width='100%'>" . $subject . "</td>\n"; echo "<td><img src='" . THEME . "/images/pfboxcapright.jpg' alt='image' /></td>\n"; echo "</tr>\n</table>\n"; echo "<table width='100%' cellpadding='0' cellspacing='0'>\n<tr>\n"; echo "<td class='pfboxbll' height='100%'> </td>\n"; echo "<td class='main-body middle-border'>" . ($info['article_breaks'] == "y" ? nl2br($article) : $article) . "</td>\n"; echo "<td class='pfboxblr' height='100%'> </td>\n"; echo "</tr>\n<tr>\n"; echo "<td class='pfboxbll' height='100%'> </td>\n"; echo "<td align='center' class='news-footer'>\n"; echo articleposter($info, " ·") . articleopts($info, "·") . itemoptions("A", $info['article_id']); echo "</td>\n"; echo "<td class='pfboxblr' height='100%'> </td>\n"; echo "</tr>\n</table>\n"; echo "<table cellspacing='0' cellpadding='0' width='100%' class='spacer'>\n<tr>\n"; echo "<td align='left'><img src='" . THEME . "/images/pfboxsidebleft.jpg' alt='image' /></td>"; echo "<td align='center' class='pfboxsideb' width='100%'></td>"; echo "<td align='right'><img src='" . THEME . "/images/pfboxsidebright.jpg' alt='image' /></td>"; echo "</tr>\n</table>\n"; }
function render_article($subject, $article, $info) { echo "<div class='news-item'>\n"; echo "<div class='content'>\n"; echo "<div class='info'>\n"; echo "<span class='title'>" . $subject . "</span>\n"; echo "<span class='poster'>" . articleposter($info, "") . "</span>\n"; echo "</div>\n"; echo "<div class='subject'>" . $article . "</div>\n"; echo "<div class='footer'>\n"; echo "<span class='category'>" . articlecat($info, " - ") . "</span>"; echo "<span class='read-more'>" . articleopts($info, " - ") . "</span>"; echo "</div>\n"; echo "</div>\n"; echo "</div>\n"; }