source: sipes/cord/modules/aggregator/aggregator-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: 1.3 KB
Línea 
1<?php
2
3/**
4 * @file aggregator-item.tpl.php
5 * Default theme implementation to format an individual feed item for display
6 * on the aggregator page.
7 *
8 * Available variables:
9 * - $feed_url: URL to the originating feed item.
10 * - $feed_title: Title of the feed item.
11 * - $source_url: Link to the local source section.
12 * - $source_title: Title of the remote source.
13 * - $source_date: Date the feed was posted on the remote source.
14 * - $content: Feed item content.
15 * - $categories: Linked categories assigned to the feed.
16 *
17 * @see template_preprocess()
18 * @see template_preprocess_aggregator_item()
19 */
20?>
21<div class="feed-item">
22  <h3 class="feed-item-title">
23    <a href="<?php print $feed_url; ?>"><?php print $feed_title; ?></a>
24  </h3>
25
26  <div class="feed-item-meta">
27  <?php if ($source_url) : ?>
28    <a href="<?php print $source_url; ?>" class="feed-item-source"><?php print $source_title; ?></a> -
29  <?php endif; ?>
30    <span class="feed-item-date"><?php print $source_date; ?></span>
31  </div>
32
33<?php if ($content) : ?>
34  <div class="feed-item-body">
35    <?php print $content; ?>
36  </div>
37<?php endif; ?>
38
39<?php if ($categories) : ?>
40  <div class="feed-item-categories">
41    <?php print t('Categories'); ?>: <?php print implode(', ', $categories); ?>
42  </div>
43<?php endif ;?>
44
45</div>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.