Upload files to "templates"
This commit is contained in:
14
templates/submenu.html
Normal file
14
templates/submenu.html
Normal file
@ -0,0 +1,14 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<h1>{{ title }}</h1>
|
||||
<p>Select a tool or resource below:</p>
|
||||
<ul>
|
||||
{% for action in submenu %}
|
||||
<li>
|
||||
<a href="#" onclick="event.preventDefault(); {{ action.function }}()">
|
||||
{{ action.description }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user