mirror of
https://github.com/e107inc/e107.git
synced 2025-08-08 07:36:32 +02:00
33 lines
712 B
PHP
33 lines
712 B
PHP
<?php
|
|
|
|
|
|
|
|
$RSS_TEMPLATE = [];
|
|
|
|
//$RSS_WRAPPER['page']['RSS_TEXT'] = '(pre){---}(post)';
|
|
|
|
|
|
$RSS_TEMPLATE['page']['start'] = "<!-- RSS Template -->
|
|
<table class='table table-striped table-bordered fborder'>
|
|
<tr>
|
|
<th class='fcaption' style='width:70%'> </th>
|
|
<th class='fcaption' style='text-align:right'>{LAN=RSS_PLUGIN_LAN_6}</th>
|
|
</tr>";
|
|
|
|
$RSS_TEMPLATE['page']['item'] = "
|
|
<tr>
|
|
<td class='forumheader3'>{RSS_FEED}<br />
|
|
<span class='smalltext' ><small>{RSS_TEXT}</small></span>
|
|
</td>
|
|
<td class='forumheader3' style='text-align:right'>
|
|
{RSS_TYPES}
|
|
</td>
|
|
</tr>";
|
|
|
|
|
|
$RSS_TEMPLATE['page']['end'] = "</table>";
|
|
|
|
|
|
|
|
|