file-explorer/templates/home.html.twig
2024-12-04 22:23:28 +01:00

11 lines
323 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Home{% endblock %}
{% block body %}
<center class="container 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 %}