17 lines
536 B
Twig
17 lines
536 B
Twig
|
{% extends 'html.twig' %}
|
||
|
|
||
|
{% block html_head %}
|
||
|
<link href="/vendor/fontawesome/css/all.min.css" rel="stylesheet">
|
||
|
<link href="{{ asset('common.css') }}" rel="stylesheet">
|
||
|
<link href="{{ asset('redirects.css') }}" rel="stylesheet">
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block html_body %}
|
||
|
<div class="redir-background"></div>
|
||
|
<div class="redir-foreground">
|
||
|
{% block content %}{% endblock %}
|
||
|
</div>
|
||
|
<script src="{{ asset('common.js') }}"></script>
|
||
|
<script src="{{ asset('redirects.js') }}"></script>
|
||
|
{% endblock %}
|