Set up the required directory layout, app scaffolding, core settings, templates, static assets, and Docker/Tailwind tooling to establish a standardized development baseline.
4 lines
131 B
HTML
4 lines
131 B
HTML
{% extends "base.html" %}
|
|
{% block title %}403{% endblock %}
|
|
{% block content %}<div class="p-8">403 Forbidden</div>{% endblock %}
|