Files
Phraseanet/templates/mobile/common/index.html.twig
Nicolas Le Goff 4a8e1c13ab Add jquery mobile
2013-08-17 17:12:58 +02:00

20 lines
920 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>{{ app['phraseanet.registry'].get('GV_homeTitle') }} - {{ module_name }} </title>
<link rel="stylesheet" href="{{ path('minifier', { 'f' : 'assets/jquery-mobile/jquery.mobile.css' }) }}" />
<script src="{{ path('minifier', { 'f' : 'assets/jquery/jquery.js' }) }}"></script>
<script src="{{ path('minifier', { 'f' : 'assets/jquery-mobile/jquery.mobile.js' }) }}"></script>
{% block stylesheet %}{% endblock %}
{% block icon %}{% endblock %}
{% block javascript %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
{% include 'common/analytics.html.twig' %}
</body>
</html>