diff options
| author | 2014-10-02 21:41:06 +0200 | |
|---|---|---|
| committer | 2014-10-02 21:41:06 +0200 | |
| commit | 3b6b7d08d3c84dd9dc094fa3e0c0c58336552114 (patch) | |
| tree | cc1d41efa742871071d82ab70438774aecb2d0e5 | |
| parent | 370b51815071a36574ef40f5661de4ba17f071c9 (diff) | |
Fix position of links (updating feed)
See last commit
| -rw-r--r-- | app/views/helpers/feed/update.phtml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/views/helpers/feed/update.phtml b/app/views/helpers/feed/update.phtml index 3f6b32076..678c5f132 100644 --- a/app/views/helpers/feed/update.phtml +++ b/app/views/helpers/feed/update.phtml @@ -1,10 +1,13 @@ <div class="post"> <h1><?php echo $this->feed->name (); ?></h1> - <?php echo $this->feed->description (); ?> - <a href="<?php echo _url('index', 'index', 'get', 'f_' . $this->feed->id ()); ?>"><?php echo _i('link'); ?> <?php echo _t('filter'); ?></a> - <?php echo _t('or'); ?> - <a href="<?php echo _url('stats', 'repartition', 'id', $this->feed->id()); ?>"><?php echo _i('stats'); ?> <?php echo _t('stats'); ?></a> + <div> + <a href="<?php echo _url('index', 'index', 'get', 'f_' . $this->feed->id ()); ?>"><?php echo _i('link'); ?> <?php echo _t('filter'); ?></a> + <?php echo _t('or'); ?> + <a href="<?php echo _url('stats', 'repartition', 'id', $this->feed->id()); ?>"><?php echo _i('stats'); ?> <?php echo _t('stats'); ?></a> + </div> + + <p><?php echo $this->feed->description (); ?></p> <?php $nbEntries = $this->feed->nbEntries (); ?> |
