You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
667 B
34 lines
667 B
7 years ago
|
{% extends 'partials/base.html.twig' %}
|
||
|
|
||
|
{% block head %}
|
||
|
<base href="/schedule/">
|
||
|
|
||
|
{{ parent() }}
|
||
|
|
||
|
{% endblock head %}
|
||
|
|
||
|
{% block stylesheets %}
|
||
|
{% do assets.addCss('/schedule/assets/styles.bundle.css') %}
|
||
|
|
||
|
{{ parent() }}
|
||
|
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block bottom %}
|
||
|
{{ parent() }}
|
||
|
|
||
|
{% do assets.addJs('/schedule/assets/inline.bundle.js') %}
|
||
|
{% do assets.addJs('/schedule/assets/polyfills.bundle.js') %}
|
||
|
{% do assets.addJs('/schedule/assets/main.bundle.js') %}
|
||
|
|
||
|
{{ assets.js() }}
|
||
|
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<section class="mat-typography" style="min-height: 26em">
|
||
|
<app-root></app-root>
|
||
|
</section>
|
||
|
|
||
|
{% endblock %}
|