1
0
mirror of https://github.com/moparisthebest/wallabag synced 2025-02-19 20:41:48 -05:00
wallabag/app/views/layout.twig

44 lines
1.6 KiB
Twig
Raw Normal View History

2014-01-15 13:23:44 +01:00
<!doctype html>
2013-11-26 13:33:00 +01:00
<!--[if lte IE 6]><html class="no-js ie6 ie67 ie678" lang="en"><![endif]-->
<!--[if lte IE 7]><html class="no-js ie7 ie67 ie678" lang="en"><![endif]-->
<!--[if IE 8]><html class="no-js ie8 ie678" lang="en"><![endif]-->
<!--[if gt IE 8]><html class="no-js" lang="en"><![endif]-->
2014-01-15 13:23:44 +01:00
<html dir="ltr" lang="en">
2013-11-26 13:33:00 +01:00
<head>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=10">
<![endif]-->
<title>{% block title %}{% endblock %} poche</title>
2014-01-15 13:23:44 +01:00
<link rel="stylesheet" href="/assets/css/reset.css" media="all">
<link rel="stylesheet" href="/assets/css/tinytypo.css" media="all">
<link rel="stylesheet" href="/assets/css/typo.css" media="all">
<link rel="stylesheet" href="/assets/css/custom.css" media="all">
<script src="/assets/js/app.js"></script>
<script src="/assets/js/event.js"></script>
<script src="/assets/js/item.js"></script>
<script src="/assets/js/nav.js"></script>
2013-11-26 13:33:00 +01:00
</head>
<body>
2014-01-15 13:23:44 +01:00
<div id="main" class="page">
2014-01-23 13:09:20 +01:00
<main role="main">
<div id="content">
{% if is_granted('ROLE_USER') %}
{% include '_top.twig' %}
{% include '_alerts.twig' %}
{% block content %}{% endblock %}
{% else %}
{% include '_login.twig' %}
{% endif %}
</div>
</main>
{% include '_footer.twig' %}
2014-01-15 13:23:44 +01:00
</div>
2013-11-26 13:33:00 +01:00
</body>
</html>