1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-12-02 13:52:18 -05:00
wallabag/app/views/layout.twig

31 lines
1.2 KiB
Twig
Raw Normal View History

2014-01-15 07:23:44 -05:00
<!doctype html>
2013-11-26 07:33:00 -05: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 07:23:44 -05:00
<html dir="ltr" lang="en">
2013-11-26 07:33:00 -05: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 07:23:44 -05: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">
2013-11-26 07:33:00 -05:00
</head>
<body>
2014-01-15 07:23:44 -05:00
<div id="main" class="page">
2013-11-26 07:33:00 -05:00
{% include '_top.twig' %}
2014-01-15 07:23:44 -05:00
<main role="main">
<div id="content">
2014-01-14 09:51:34 -05:00
{% include '_alerts.twig' %}
2013-11-26 07:33:00 -05:00
{% block content %}{% endblock %}
</div>
2014-01-15 07:23:44 -05:00
</main>
2013-11-26 07:33:00 -05:00
{% include '_footer.twig' %}
2014-01-15 07:23:44 -05:00
</div>
2013-11-26 07:33:00 -05:00
</body>
</html>