wallabag/tpl/layout.twig

31 lines
1.1 KiB
Twig
Raw Permalink Normal View History

2013-08-02 16:40:51 -04:00
<!DOCTYPE html>
2013-08-23 16:38:14 -04: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]-->
2013-08-02 16:40:51 -04:00
<html>
<head>
<meta name="viewport" content="initial-scale=1.0">
2013-08-02 16:40:51 -04:00
<meta charset="utf-8">
2013-08-23 17:04:56 -04:00
<!--[if IE]>
2013-08-02 16:40:51 -04:00
<meta http-equiv="X-UA-Compatible" content="IE=10">
2013-08-23 17:04:56 -04:00
<![endif]-->
2013-08-02 16:40:51 -04:00
<title>{% block title %}{% endblock %} - poche</title>
2013-08-10 16:17:00 -04:00
{% include '_head.twig' %}
{% include '_bookmarklet.twig' %}
2013-08-02 16:40:51 -04:00
</head>
2013-08-05 15:56:32 -04:00
<body>
2013-08-03 02:25:11 -04:00
{% include '_top.twig' %}
2013-08-02 16:40:51 -04:00
<div id="main">
{% block menu %}{% endblock %}
{% block precontent %}{% endblock %}
2013-08-05 15:56:32 -04:00
{% block messages %}
{% include '_messages.twig' %}
{% endblock %}
<div id="content" class="w600p center">
2013-08-02 16:40:51 -04:00
{% block content %}{% endblock %}
2013-08-05 15:56:32 -04:00
</div>
2013-08-02 16:40:51 -04:00
</div>
2013-08-10 16:17:00 -04:00
{% include '_footer.twig' %}
2013-08-02 16:40:51 -04:00
</body>
</html>