Initial project structure with express.js; added Twig templating

This commit is contained in:
2023-09-07 22:49:37 -06:00
parent f6b2c852b9
commit 40cf8fb488
9 changed files with 774 additions and 1 deletions

View File

@ -0,0 +1,9 @@
{% extends 'layout/default.twig' %}
{% block title %}Dashboard{% endblock %}
{% block content %}
<p>This is a test.</p>
{% endblock %}