hostbasket/actix_mvc_app/src/views/test_base.html
2025-04-22 15:36:40 +02:00

11 lines
277 B
HTML

{% extends "base.html" %}
{% block title %}Test Base Template{% endblock %}
{% block content %}
<div class="container-fluid px-4">
<h1 class="mt-4">Test Base Template</h1>
<p>This is a simplified template for testing that extends base.html.</p>
</div>
{% endblock %}