This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
pflaenz.li-Symfony/templates/app/index.html.twig

10 lines
166 B
Twig
Raw Normal View History

2021-04-22 17:44:16 +02:00
{% extends 'base.html.twig' %}
2021-04-24 16:59:51 +02:00
{% block title %}User{% endblock %}
2021-04-22 17:44:16 +02:00
{% block body %}
2021-04-24 16:59:51 +02:00
<div class="mb-3">
<h1>Hello {{ user.username }}!</p>
2021-04-22 17:44:16 +02:00
</div>
{% endblock %}