source: sipes/cord/modules/aggregator/aggregator-feed-source.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: 1.1 KB
Línea 
1<?php
2
3/**
4 * @file aggregator-feed-source.tpl.php
5 * Default theme implementation to present the source of the feed.
6 *
7 * The contents are render above feed listings when browsing source feeds.
8 * For example, "example.com/aggregator/sources/1".
9 *
10 * Available variables:
11 * - $source_icon: Feed icon linked to the source. Rendered through
12 *   theme_feed_icon().
13 * - $source_image: Image set by the feed source.
14 * - $source_description: Description set by the feed source.
15 * - $source_url: URL to the feed source.
16 * - $last_checked: How long ago the feed was checked locally.
17 *
18 * @see template_preprocess()
19 * @see template_preprocess_aggregator_feed_source()
20 */
21?>
22<div class="feed-source">
23  <?php print $source_icon; ?>
24  <?php print $source_image; ?>
25  <div class="feed-description">
26    <?php print $source_description; ?>
27  </div>
28  <div class="feed-url">
29    <em><?php print t('URL:'); ?></em> <a href="<?php print $source_url; ?>"><?php print $source_url; ?></a>
30  </div>
31  <div class="feed-updated">
32    <em><?php print t('Updated:'); ?></em> <?php print $last_checked; ?>
33  </div>
34</div>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.