1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-07 23:26:41 +02:00

RSS template upgraded to v2.x spec. Bootstrap 5 styling fixes.

This commit is contained in:
Cameron
2021-01-03 07:54:43 -08:00
parent c3c830d296
commit 3b0ff5d4ef
7 changed files with 69 additions and 52 deletions

View File

@@ -0,0 +1,32 @@
<?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>";