Upload files to "templates"

This commit is contained in:
2024-11-28 00:55:02 -05:00
parent 9f90266716
commit cc9de49dba
13 changed files with 246 additions and 0 deletions

11
templates/autostart.html Normal file
View File

@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block content %}
<h1>Autostart Persistence</h1>
{% for section in content %}
<h2>{{ section.title }}</h2>
<pre>{{ section.content }}</pre>
{% endfor %}
<a href="/persistence">Back to Persistence Submenu</a>
{% endblock %}