60 lines
3.0 KiB
PHP
60 lines
3.0 KiB
PHP
<!DOCTYPE html>
|
||
<html
|
||
<?php if (Model\Config\is_language_rtl()): ?>
|
||
dir="rtl"
|
||
<?php endif ?>
|
||
>
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title><?= isset($title) ? Helper\escape($title) : t('Miniflux') ?></title>
|
||
|
||
<meta name="viewport" content="width=device-width">
|
||
<meta name="mobile-web-app-capable" content="yes">
|
||
|
||
<link rel="icon" type="image/png" href="assets/img/favicon.png">
|
||
<link rel="shortcut icon" href="favicon.ico">
|
||
<link rel="apple-touch-icon" href="assets/img/touch-icon-iphone.png">
|
||
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/touch-icon-ipad.png">
|
||
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/touch-icon-iphone-retina.png">
|
||
<link rel="apple-touch-icon" sizes="144x144" href="assets/img/touch-icon-ipad-retina.png">
|
||
|
||
<link href="<?= Helper\css() ?>" rel="stylesheet" media="screen">
|
||
<script type="text/javascript" src="assets/js/all.min.js?<?= filemtime('assets/js/all.min.js') ?>" defer></script>
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<nav>
|
||
<a class="logo" href="?"><?= tne('mini%sflux%s','<span>','</span>') ?></a>
|
||
<ul>
|
||
<li <?= isset($menu) && $menu === 'unread' ? 'class="active"' : '' ?>>
|
||
<a href="?action=unread"><?= t('unread') ?><span id="nav-counter"><?= empty($nb_unread_items) ? '' : $nb_unread_items ?></span></a>
|
||
</li>
|
||
<li class="<?= isset($menu) && $menu === 'bookmarks' ? 'active hide-mobile' : 'hide-mobile' ?>">
|
||
<a href="?action=bookmarks"><?= t('bookmarks') ?></a>
|
||
</li>
|
||
<li class="<?= isset($menu) && $menu === 'history' ? 'active hide-mobile' : 'hide-mobile' ?>">
|
||
<a href="?action=history"><?= t('history') ?></a>
|
||
</li>
|
||
<li class="<?= isset($menu) && $menu === 'feeds' ? 'active hide-mobile' : 'hide-mobile' ?>">
|
||
<a href="?action=feeds"><?= t('subscriptions') ?></a>
|
||
</li>
|
||
<li class="<?= isset($menu) && $menu === 'config' ? 'active hide-mobile' : 'hide-mobile' ?>">
|
||
<a href="?action=config"><?= t('preferences') ?></a>
|
||
</li>
|
||
<li class="hide-mobile">
|
||
<a href="?action=logout"><?= t('logout') ?></a>
|
||
</li>
|
||
<li class="<?= isset($menu) && $menu === 'more' ? 'active hide-desktop' : 'hide-desktop' ?>">
|
||
<a href="?action=more">∨ <?= t('menu') ?></a>
|
||
</li>
|
||
</ul>
|
||
</nav>
|
||
</header>
|
||
<section class="page" data-item-page="<?= $menu ?>">
|
||
<?= Helper\flash('<div class="alert alert-success">%s</div>') ?>
|
||
<?= Helper\flash_error('<div class="alert alert-error">%s</div>') ?>
|
||
<?= $content_for_layout ?>
|
||
</section>
|
||
</body>
|
||
</html>
|