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
724 B

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