mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 13:03:20 +00:00
30 lines
1.4 KiB
Twig
30 lines
1.4 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="{{ app['locale.I18n'] }}" style="overflow:hidden;">
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
|
<title>{% if local_title is defined%}{{local_title}} | {% endif %}{{home_title}} - {{ module_name }} </title>
|
|
|
|
<link type="text/css" rel="stylesheet" href="/skins/html5/bootstrap/css/bootstrap.min.css" />
|
|
<link type="text/css" rel="stylesheet" href="/skins/html5/bootstrap/css/bootstrap-responsive.min.css" />
|
|
<link type="text/css" rel="stylesheet" href="{{registry.get('GV_STATIC_URL')}}/skins/common/main.css">
|
|
|
|
<script type="text/javascript" src="/include/minify/f=include/jslibs/jquery-1.7.1.js"></script>
|
|
<script type="text/javascript" src="/skins/html5/bootstrap/js/bootstrap.min.js"></script>
|
|
|
|
{% block stylesheet %}{% endblock %}
|
|
{% block icon %}{% endblock %}
|
|
{% block rss %}{% endblock %}
|
|
{% block javascript %}{% endblock %}
|
|
</head>
|
|
<body class="PNB">
|
|
<div id="mainContainer" class="PNB">
|
|
{% include 'common/menubar.html.twig' %}
|
|
<div class="PNB" id="mainContent" style="top:30px; min-width:900px; overflow-x:auto; overflow-y:auto;">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% block extra_content %}{% endblock %}
|
|
{% include 'common/analytics.html.twig' %}
|
|
</body>
|
|
</html>
|