You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
429 B
Twig
17 lines
429 B
Twig
{% extends "front/_frame.twig" %}
|
|
|
|
{% block title %}
|
|
{{ title }}
|
|
{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" type="text/css" href="/public/assets/css/base.css">
|
|
{% endblock %}
|
|
|
|
{% block mainContent %}
|
|
This is the index page, boss
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
<script src="/public/assets/scripts/dash.min.js" type="text/javascript"></script>
|
|
{% endblock %} |