A Python port of the Invisible Internet Project (I2P)
1{% extends "base.html" %}
2{% block title %}Configuration{% endblock %}
3{% block content %}
4<h1>Configuration</h1>
5<div class="card">
6 <h3>Config Sections</h3>
7 <ul>
8 {% for section in sections %}
9 <li><a href="/config/{{ section }}">{{ section|capitalize }}</a></li>
10 {% endfor %}
11 </ul>
12</div>
13{% endblock %}