forked from projects/file-explorer
11 lines
323 B
Twig
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 %} |