spiderweb/templates/test.html

19 lines
487 B
HTML
Raw Normal View History

{% extends 'base.html' %}
{% block content %}
2024-08-09 12:10:54 -04:00
<h1 class="mt-5">HI, THIS IS A PAGE</h1>
2024-08-06 01:10:00 -04:00
2024-08-09 12:10:54 -04:00
<p>
This is a test of the template rendering system. If rendering is working, this value
should be <code>TEST</code>: {{ value }}.
</p>
<p>
The value of <code>request.spiderweb</code> is {{ request.spiderweb }}. If this is True,
middleware is working.
</p>
2024-08-14 19:27:37 -04:00
<p>
<img src="/static/aaaaaa.gif" alt="AAAAAAAAAA">
</p>
{% endblock %}