mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 04:53:26 +00:00
25 lines
1.0 KiB
Twig
25 lines
1.0 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="{{ app['locale'] }}" prefix="og: http://ogp.me/ns#">
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>{% if local_title is defined%}{{local_title}} | {% endif %}{{ app['conf'].get(['registry', 'general', 'title']) }} - {{ module_name }} </title>
|
|
<meta property="og:title" content="{% if local_title is defined%}{{local_title}} | {% endif %}{{ app['conf'].get(['registry', 'general', 'title']) }} - {{ module_name }}">
|
|
<meta property="og:site_name" content="{{ app['conf'].get(['registry', 'general', 'title']) }}">
|
|
<meta property="og:url" content="{{ app['request'].getUri }}">
|
|
{% block rss %}{% endblock %}
|
|
{% block stylesheet %}{% endblock %}
|
|
{% block icon %}{% endblock %}
|
|
{% block javascript %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div id="mainContainer">
|
|
{% include 'common/menubar.html.twig' %}
|
|
|
|
<div id="mainContent">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% include 'common/analytics.html.twig' %}
|
|
</body>
|
|
</html>
|