file-explorer/templates/home.html.twig

11 lines
313 B
Twig
Raw Normal View History

2024-12-04 19:39:37 +01:00
{% extends 'base.html.twig' %}
{% block title %}Home{% endblock %}
{% block body %}
<center class="mt-5">
<h1>Welcome to the File Explorer</h1>
<p>Use the navigation bar to explore the files and directories.</p>
{% include '_partials/_table.html.twig' %}
</center>
{% endblock %}