mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-11 12:04:12 +01:00
- Autoloader for portal files in the itop-portal-base module - Dependencies moved to root composer.json - Add autoloader for /core and /application content
37 lines
1.4 KiB
Twig
37 lines
1.4 KiB
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="{{ _charset }}" />
|
|
<meta name="robots" content="noindex,nofollow" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<link rel="icon" type="image/png" href="{{ include('@Twig/images/favicon.png.base64') }}">
|
|
<style>{{ include('@Twig/exception.css.twig') }}</style>
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container">
|
|
<h1 class="logo">{{ include('@Twig/images/symfony-logo.svg') }} Symfony Exception</h1>
|
|
|
|
<div class="help-link">
|
|
<a href="https://symfony.com/doc">
|
|
<span class="icon">{{ include('@Twig/images/icon-book.svg') }}</span>
|
|
<span class="hidden-xs-down">Symfony</span> Docs
|
|
</a>
|
|
</div>
|
|
|
|
<div class="help-link">
|
|
<a href="https://symfony.com/support">
|
|
<span class="icon">{{ include('@Twig/images/icon-support.svg') }}</span>
|
|
<span class="hidden-xs-down">Symfony</span> Support
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
{% block body %}{% endblock %}
|
|
{{ include('@Twig/base_js.html.twig') }}
|
|
</body>
|
|
</html>
|