ImpressCMS/impresscms

View on GitHub
htdocs/themes/reflex/modules/system/admin/system_adm_rss.html

Summary

Maintainability
Test Coverage
<table class="outer" width="100%">
 <{foreach item=feeditem from=$admin_rss_feeditems}>
  <tr>
   <td class="<{cycle values="even,odd"}>">
    <h2><a href="<{$feeditem.link}>" rel="external"><{$feeditem.title}></a> (<{$feeditem.date}>)</h2>
    <{if $feeditem.description}>
     <p><{$feeditem.description}>
      <{if $feeditem.guid}>
      <br /><a href="<{$feeditem.guid}>"><{$smarty.const._MORE}></a>
     <{/if}>
    <{elseif $feeditem.guid}>
     <p><a href="<{$feeditem.guid}>"><{$smarty.const._MORE}></a></p>
    <{/if}>
   </td>
  </tr>
 <{/foreach}>
</table>