mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 13:03:20 +00:00
25 lines
950 B
Twig
25 lines
950 B
Twig
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html lang="{{ session.get_I18n }}">
|
|
<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="{{registry.get('GV_STATIC_URL')}}/skins/common/main.css">
|
|
{% block stylesheet %}{% endblock %}
|
|
{% block icon %}{% endblock %}
|
|
{% block rss %}{% endblock %}
|
|
{% block javascript %}{% endblock %}
|
|
|
|
</head>
|
|
<body>
|
|
<div id="mainContainer" style="height:100%">
|
|
{% include 'common/menubar.twig' %}
|
|
<div style="top:30px;height:100%;">
|
|
<div id="mainContent" style="height:100%;min-width:900px;">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% include 'common/analytics.twig' %}
|
|
</body>
|
|
</html>
|