11 lines
277 B
HTML
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 %}
|