LoveIsGrief 23b4d33b3b
i2p: django: Add description for the configuration shortcuts
Tunnels have a better description now.

I2P snark will need a better description and introduction

freedombox-team/plinth#1428 Request: I2P support

Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
2019-04-01 17:33:06 -07:00

28 lines
690 B
HTML

{% extends "base.html" %}
{% block page_head %}
<style>
.i2p-main-container {
display: flex;
flex-direction: column;
min-height: 500px;
height: 100%;
}
.i2p-main-container .i2p-main-container__frame {
flex-grow: 1;
}
</style>
{% endblock %}
{% block content %}
<div class="i2p-main-container">
<div class="i2p-main-container__header">
{% for line in description %}
<p>{{ line|safe }}</p>
{% endfor %}
</div>
<iframe class="i2p-main-container__frame" src="{{ path }}" frameborder="0"></iframe>
</div>
{% endblock %}