mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
63 lines
1.3 KiB
PHP
63 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)
|
|
*
|
|
* Plugin - newsfeeds
|
|
*
|
|
* $Source: /cvs_backup/e107_0.8/e107_plugins/newsfeed/templates/newsfeed_template.php,v $
|
|
* $Revision: 1.4 $
|
|
* $Date: 2009-11-18 01:05:53 $
|
|
* $Author: e107coders $
|
|
*
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
$NEWSFEED_MAIN_CAPTION = NFLAN_38;
|
|
|
|
$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='forumheader'>{FEEDIMAGE} {FEEDTITLE}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class='forumheader3'>
|
|
<ul>\n";
|
|
|
|
$NEWSFEED_MAIN = "
|
|
<li><b>{FEEDITEMLINK}</b> <span class='smalltext'>{FEEDITEMCREATOR}</span><br />{FEEDITEMTEXT}<br /><br /></li>\n";
|
|
|
|
|
|
$NEWSFEED_MAIN_END = "
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class='forumheader3' style='text-align: right;'><span class='smalltext'>{FEEDCOPYRIGHT} | {FEEDLASTBUILDDATE}</span></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class='forumheader3' style='text-align: center;'><span class='smalltext'>{BACKLINK}</span></td>
|
|
</tr>
|
|
</table>\n";
|
|
|
|
|
|
?>
|