Files
Phraseanet/templates/mobile/common/index.html.twig
Romain Neutron ec11550eab Update templates
2012-10-04 15:42:53 +02:00

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>