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.
|
|
|
{% extends 'partials/base.html.twig' %}
|
|
|
|
|
|
|
|
{% block head %}
|
|
|
|
<base href="/regular-subs/">
|
|
|
|
|
|
|
|
{{ parent() }}
|
|
|
|
|
|
|
|
{% endblock head %}
|
|
|
|
|
|
|
|
{% block javascripts %}
|
|
|
|
{% do assets.addJs('/regular-subs/assets/inline.bundle.js', {group: 'bottom'}) %}
|
|
|
|
{% do assets.addJs('/regular-subs/assets/polyfills.bundle.js', {group: 'bottom'}) %}
|
|
|
|
{% do assets.addJs('/regular-subs/assets/main.bundle.js', {group: 'bottom'}) %}
|
|
|
|
|
|
|
|
{{ parent() }}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block stylesheets %}
|
|
|
|
{% do assets.addCss('/regular-subs/assets/styles.bundle.css') %}
|
|
|
|
|
|
|
|
{{ parent() }}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{{ page.content }}
|
|
|
|
|
|
|
|
<section class="mat-typography" style="min-height: 26em">
|
|
|
|
<regular-subs-app></regular-subs-app>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{% endblock %}
|