source: sipes/cord/modules/aggregator/aggregator-summary-item.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: 718 octetos
Línea 
1<?php
2
3/**
4 * @file aggregator-summary-item.tpl.php
5 * Default theme implementation to present a linked feed item for summaries.
6 *
7 * Available variables:
8 * - $feed_url: Link to originating feed.
9 * - $feed_title: Title of feed.
10 * - $feed_age: Age of remote feed.
11 * - $source_url: Link to remote source.
12 * - $source_title: Locally set title for the source.
13 *
14 * @see template_preprocess()
15 * @see template_preprocess_aggregator_summary_item()
16 */
17?>
18<a href="<?php print $feed_url; ?>"><?php print $feed_title; ?></a> <span class="age"><?php print $feed_age; ?></span><?php if ($source_url) : ?>, <span class="source"><a href="<?php print $source_url; ?>"><?php print $source_title; ?></a></span><?php endif; ?>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.