1<?php
2/*
3 * e107 website system
4 *
5 * Copyright (C) 2008-2009 e107 Inc (e107.org)
6 * Released under the terms and conditions of the
7 * GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
8 *
9 * Plugin - newsfeeds
10 *
11 * $Source: /cvs_backup/e107_0.8/e107_plugins/newsfeed/templates/newsfeed_template.php,v $
12 * $Revision$
13 * $Date$
14 * $Author$
15 *
16*/
17
18if (!defined('e107_INIT')) { exit; }
19
20$NEWSFEED_MAIN_CAPTION = NFLAN_38;
21
22$NEWSFEED_LIST_START = "
23<table style='width: 100%;' class='newsfeed-list table fborder'>\n";
24
25$NEWSFEED_LIST = "
26<tr>
27<td style='width: 30%;' class='forumheader3'>{FEEDNAME}</td>
28<td style='width: 70%;' class='forumheader3'>{FEEDDESCRIPTION}</td>
29</tr>\n";
30
31$NEWSFEED_LIST_END = "
32</table>\n";
33
34$NEWSFEED_MAIN_START = "
35<table style='width: 100%;' class='newsfeed table fborder'>
36<tr>
37<td class='forumheader'><h3>{FEEDIMAGE} {FEEDTITLE}</h3></td>
38</tr>
39<tr>
40<td class='forumheader3'>
41<ul>\n";
42
43$NEWSFEED_MAIN = "
44<li><h4>{FEEDITEMLINK}</h4><small class='smalltext'>{FEEDITEMCREATOR}</small><div>{FEEDITEMTEXT}</div></li>\n";
45
46
47$NEWSFEED_MAIN_END = "
48</ul>
49</td>
50</tr>
51
52<tr>
53<td class='forumheader3' style='text-align: right;'><span class='smalltext'>{FEEDCOPYRIGHT} | {FEEDLASTBUILDDATE}</span></td>
54</tr>
55
56<tr>
57<td class='forumheader3' style='text-align: center;'><span class='smalltext'>{BACKLINK}</span></td>
58</tr>
59</table>\n";
60
61
62
63