Change navigation for feeds sub-menus
This commit is contained in:
parent
360fc9076e
commit
215cf3f881
@ -1,10 +1,13 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('New subscription') ?></h2>
|
||||
<ul>
|
||||
<li><a href="?action=feeds"><?= t('feeds') ?></a></li>
|
||||
<li><a href="?action=import"><?= t('import') ?></a></li>
|
||||
<li><a href="?action=export"><?= t('export') ?></a></li>
|
||||
</ul>
|
||||
<nav>
|
||||
<ul>
|
||||
<li class="active"><a href="?action=add"><?= t('add') ?></a></li>
|
||||
<li><a href="?action=feeds"><?= t('feeds') ?></a></li>
|
||||
<li><a href="?action=import"><?= t('import') ?></a></li>
|
||||
<li><a href="?action=export"><?= t('export') ?></a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<form method="post" action="?action=subscribe" autocomplete="off">
|
||||
|
@ -1,11 +1,14 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('Subscriptions') ?></h2>
|
||||
<ul>
|
||||
<li><a href="?action=add"><?= t('add') ?></a></li>
|
||||
<li><a href="?action=import"><?= t('import') ?></a></li>
|
||||
<li><a href="?action=export"><?= t('export') ?></a></li>
|
||||
<li><a href="?action=refresh-all" data-action="refresh-all"><?= t('refresh all') ?></a></li>
|
||||
</ul>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="?action=add"><?= t('add') ?></a></li>
|
||||
<li class="active"><a href="?action=feeds"><?= t('feeds') ?></a></li>
|
||||
<li><a href="?action=import"><?= t('import') ?></a></li>
|
||||
<li><a href="?action=export"><?= t('export') ?></a></li>
|
||||
<li><a href="?action=refresh-all" data-action="refresh-all"><?= t('refresh all') ?></a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<?php if (empty($feeds)): ?>
|
||||
|
@ -1,10 +1,13 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('OPML Import') ?></h2>
|
||||
<ul>
|
||||
<li><a href="?action=feeds"><?= t('feeds') ?></a></li>
|
||||
<li><a href="?action=add"><?= t('add') ?></a></li>
|
||||
<li><a href="?action=export"><?= t('export') ?></a></li>
|
||||
</ul>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="?action=add"><?= t('add') ?></a></li>
|
||||
<li><a href="?action=feeds"><?= t('feeds') ?></a></li>
|
||||
<li class="active"><a href="?action=import"><?= t('import') ?></a></li>
|
||||
<li><a href="?action=export"><?= t('export') ?></a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<form method="post" action="?action=import" enctype="multipart/form-data">
|
||||
|
Loading…
Reference in New Issue
Block a user