mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
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>
28 lines
690 B
HTML
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 %}
|