Rename material entrypoint to main

This commit is contained in:
Yassine Guedidi
2025-01-19 19:49:50 +01:00
parent 22c9497cd7
commit 5e8ca0887e
2 changed files with 3 additions and 3 deletions

View File

@ -3,13 +3,13 @@
{% block css %}
{{ parent() }}
{% if not app.debug %}
<link rel="stylesheet" href="{{ asset('wallassets/material.css') }}">
<link rel="stylesheet" href="{{ asset('wallassets/main.css') }}">
{% endif %}
{% endblock %}
{% block scripts %}
{{ parent() }}
<script src="{{ asset('wallassets/material' ~ (app.debug ? '.dev' : '') ~ '.js') }}"></script>
<script src="{{ asset('wallassets/main' ~ (app.debug ? '.dev' : '') ~ '.js') }}"></script>
{% endblock %}
{% block header %}