11 lines
313 B
Twig
11 lines
313 B
Twig
|
{% 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 %}
|