file-explorer/templates/home.html.twig
Constantin Simonis e70c6db10f
All checks were successful
build / build (pull_request) Successful in 3m57s
add table for displaying dir content
2024-12-04 19:39:37 +01:00

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 %}