mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 12:48:24 +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$
|
|
* $Date$
|
|
* $Author$
|
|
*
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
$NEWSFEED_MAIN_CAPTION = NFLAN_38;
|
|
|
|
$NEWSFEED_LIST_START = "
|
|
<table style='width: 100%;' class='newsfeed-list table 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='newsfeed table fborder'>
|
|
<tr>
|
|
<td class='forumheader'><h3>{FEEDIMAGE} {FEEDTITLE}</h3></td>
|
|
</tr>
|
|
<tr>
|
|
<td class='forumheader3'>
|
|
<ul>\n";
|
|
|
|
$NEWSFEED_MAIN = "
|
|
<li><h4>{FEEDITEMLINK}</h4><small class='smalltext'>{FEEDITEMCREATOR}</small><div>{FEEDITEMTEXT}</div></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";
|
|
|
|
|
|
|