mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-15 05:53:13 +00:00
30 lines
1.5 KiB
Twig
30 lines
1.5 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 %}{{ app['phraseanet.registry'].get('GV_homeTitle') }} {% if module_name is defined %} - {{ module_name }} {% endif %}</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="{{app['phraseanet.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>
|