Initial commit: UV-K5 firmware site with flasher
This commit is contained in:
17
templates/docs_list.html
Normal file
17
templates/docs_list.html
Normal file
@@ -0,0 +1,17 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Документация{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="card">
|
||||
<h2>Документация</h2>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<ul class="doc-list">
|
||||
{% for page_id, page_title in pages.items() %}
|
||||
<li><a href="{{ url_for('doc_page', page=page_id) }}">{{ page_title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user