mirror of
https://github.com/e107inc/e107.git
synced 2025-01-19 05:28:10 +01:00
61 lines
1.3 KiB
PHP
61 lines
1.3 KiB
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
*
|
|
*
|
|
* $Source: /cvs_backup/e107_0.8/e107_themes/e107v4a/newsfeed_template.php,v $
|
|
* $Revision$
|
|
* $Date$
|
|
* $Author$
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
$NEWSFEED_COLLAPSE = TRUE;
|
|
|
|
$NEWSFEED_LIST_START = "
|
|
<table style='width: 100%;' class='fborder'>\n";
|
|
|
|
$NEWSFEED_LIST = "
|
|
<tr>
|
|
<td style='width: 30%;' class='forumheader3'>{FEEDNAME}</td>
|
|
<td style='width: 70%;' class='forumheader3'>{FEEDDESCRIPTION}</td>
|
|
</tr>\n";
|
|
|
|
$NEWSFEED_LIST_END = "
|
|
</table>\n";
|
|
|
|
$NEWSFEED_MAIN_START = "
|
|
<table style='width: 100%;' class='fborder'>
|
|
<tr>
|
|
<td class='forumheader2'>{FEEDIMAGE} {FEEDTITLE}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class='forumheader3'>
|
|
<ul>\n";
|
|
|
|
$NEWSFEED_MAIN = "
|
|
<li>{FEEDITEMLINK} <span class='smalltext'>{FEEDITEMCREATOR}</span><br /><span class='mediumtext'>{FEEDITEMTEXT}</span></li>\n";
|
|
|
|
|
|
$NEWSFEED_MAIN_END = "
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class='forumheader3' style='text-align: right;'><span class='smalltext'>{FEEDCOPYRIGHT} | {FEEDLASTBUILDDATE}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class='forumheader3' style='text-align: center;'><span class='smalltext'>{BACKLINK}</td>
|
|
</tr>
|
|
</table>\n";
|
|
|
|
|
|
?>
|