mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
18 lines
545 B
Twig
18 lines
545 B
Twig
{% extends "common/index_bootstrap.html.twig" %}
|
|
|
|
{% block icon %}
|
|
<link rel="shortcut icon" type="image/x-icon" href="/assets/lightbox/images/favicon.ico">
|
|
{% endblock %}
|
|
{% block extra_content %}
|
|
<div id="DIALOG"></div>
|
|
{% endblock %}
|
|
{% block bodyJavascript %}
|
|
<script>
|
|
var lightboxApp = lightboxApplication.bootstrap({
|
|
lang: '{{ app.locale }}',
|
|
baseUrl: '{{ app['request'].getUriForPath('/') }}',
|
|
basePath: '{{ app.request.basePath|e('js') }}'
|
|
});
|
|
</script>
|
|
{% endblock %}
|