mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-05 15:06:28 -05:00
14 lines
813 B
PHTML
14 lines
813 B
PHTML
<div class="nav nav-list aside">
|
|
<li class="nav-header"><?php echo Translate::t ('configuration'); ?></li>
|
|
|
|
<li class="item<?php echo Request::actionName () == 'display' ? ' active' : ''; ?>">
|
|
<a href="<?php echo Url::display (array ('c' => 'configure', 'a' => 'display')); ?>"><?php echo Translate::t ('general_and_reading'); ?></a>
|
|
</li>
|
|
<li class="item<?php echo Request::actionName () == 'categorize' ? ' active' : ''; ?>">
|
|
<a href="<?php echo Url::display (array ('c' => 'configure', 'a' => 'categorize')); ?>"><?php echo Translate::t ('categories'); ?></a>
|
|
</li>
|
|
<li class="item<?php echo Request::actionName () == 'shortcut' ? ' active' : ''; ?>">
|
|
<a href="<?php echo Url::display (array ('c' => 'configure', 'a' => 'shortcut')); ?>"><?php echo Translate::t ('shortcuts'); ?></a>
|
|
</li>
|
|
</div>
|