mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 21:43:18 +00:00
20 lines
862 B
Twig
20 lines
862 B
Twig
<!doctype html>
|
|
<html lang="{{ app['locale.I18n'] }}">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
|
<title>{{home_title}} - {{ module_name }} </title>
|
|
<link rel="stylesheet" href="/include/jslibs/jquery.mobile-1.0a4/jquery.mobile-1.0a4.min.css" />
|
|
<script src="/include/minify/f=include/jslibs/jquery-1.7.1.js"></script>
|
|
{% block stylesheet %}{% endblock %}
|
|
{% block icon %}{% endblock %}
|
|
{% block javascript %}{% endblock %}
|
|
<script src="/include/minify/f=include/jslibs/jquery.mobile-1.0a4/jquery.mobile-1.0a4.js"></script>
|
|
</head>
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
{% include 'common/analytics.html.twig' %}
|
|
</body>
|
|
</html>
|