mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-08-05 12:19:31 +00:00
This should help the user reach pages of the configuration more quickly freedombox-team/plinth#1428 Request: I2P support Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
14 lines
306 B
HTML
14 lines
306 B
HTML
{% extends "base.html" %}
|
|
{% block page_head %}
|
|
<style>
|
|
#i2p-frame {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 500px;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<iframe id="i2p-frame" src="{{ path }}" frameborder="0"></iframe>
|
|
{% endblock %}
|