miniflux-legacy/app/templates/layout.php

64 lines
3.3 KiB
PHP
Raw Normal View History

2013-02-18 03:48:21 +01:00
<!DOCTYPE html>
<html
2016-08-25 03:17:58 +02:00
<?php if (Miniflux\Model\Config\is_language_rtl()): ?>
dir="rtl"
<?php endif ?>
>
2013-02-18 03:48:21 +01:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="mobile-web-app-capable" content="yes">
2015-08-29 04:32:10 +02:00
<meta name="robots" content="noindex,nofollow">
<meta name="referrer" content="no-referrer">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2016-08-25 03:17:58 +02:00
<title><?= isset($title) ? Miniflux\Helper\escape($title) : t('Miniflux') ?></title>
<link rel="icon" type="image/png" href="assets/img/favicon.png">
2013-04-07 05:29:24 +02:00
<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">
2016-08-25 03:17:58 +02:00
<link href="<?= Miniflux\Helper\css() ?>" rel="stylesheet" media="screen">
<script type="text/javascript" src="assets/js/all.js?<?= filemtime('assets/js/all.js') ?>" defer></script>
2013-02-18 03:48:21 +01:00
</head>
<body>
<header>
<nav>
2015-01-18 14:33:19 +01:00
<a class="logo" href="?"><?= tne('mini%sflux%s','<span>','</span>') ?></a>
2013-02-18 03:48:21 +01:00
<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>
2014-02-05 03:47:59 +01:00
<li class="<?= isset($menu) && $menu === 'bookmarks' ? 'active hide-mobile' : 'hide-mobile' ?>">
2013-06-15 05:12:08 +02:00
<a href="?action=bookmarks"><?= t('bookmarks') ?></a>
</li>
2014-02-05 03:47:59 +01:00
<li class="<?= isset($menu) && $menu === 'history' ? 'active hide-mobile' : 'hide-mobile' ?>">
<a href="?action=history"><?= t('history') ?></a>
</li>
2014-02-05 03:47:59 +01:00
<li class="<?= isset($menu) && $menu === 'feeds' ? 'active hide-mobile' : 'hide-mobile' ?>">
<a href="?action=feeds"><?= t('subscriptions') ?></a>
</li>
2014-02-05 03:47:59 +01:00
<li class="<?= isset($menu) && $menu === 'config' ? 'active hide-mobile' : 'hide-mobile' ?>">
<a href="?action=config"><?= t('preferences') ?></a>
</li>
2014-02-05 03:47:59 +01:00
<li class="hide-mobile">
<a href="?action=logout"><?= t('logout') ?></a>
</li>
2014-02-05 03:47:59 +01:00
<li class="<?= isset($menu) && $menu === 'more' ? 'active hide-desktop' : 'hide-desktop' ?>">
<a href="?action=more"> <?= t('menu') ?></a>
2014-02-05 03:47:59 +01:00
</li>
2013-02-18 03:48:21 +01:00
</ul>
</nav>
</header>
<section class="page" data-item-page="<?= $menu ?>">
2016-08-25 03:17:58 +02:00
<?= Miniflux\Helper\flash('flash_message', '<div class="alert alert-success">%s</div>') ?>
<?= Miniflux\Helper\flash('flash_error_message', '<div class="alert alert-error">%s</div>') ?>
<?= $content_for_layout ?>
2016-03-06 16:23:19 +01:00
</section>
2016-08-25 03:17:58 +02:00
<?= Miniflux\Template\load('help_layer') ?>
</body>
</html>