source: sipes/cord/modules/aggregator/aggregator-summary-items.tpl.php @ 8a8efa8

stableversion-3.0
Last change on this file since 8a8efa8 was b354002, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio del cord

  • Propiedad mode establecida a 100755
File size: 660 octetos
Línea 
1<?php
2
3/**
4 * @file aggregator-summary-items.tpl.php
5 * Default theme implementation to present feeds as list items.
6 *
7 * Each iteration generates a single feed source or category.
8 *
9 * Available variables:
10 * - $title: Title of the feed or category.
11 * - $summary_list: Unordered list of linked feed items generated through
12 *   theme_item_list().
13 * - $source_url: URL to the local source or category.
14 *
15 * @see template_preprocess()
16 * @see template_preprocess_aggregator_summary-items()
17 */
18?>
19<h2><?php print $title; ?></h2>
20<?php print $summary_list; ?>
21<div class="links">
22  <a href="<?php print $source_url; ?>"><?php print t('More'); ?></a>
23</div>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.