mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-27 10:44:33 +00:00
See: https://github.com/validator/validator/wiki/Markup-%C2%BB-Void-elements Tests: - Fewer info messages in w3c HTML validator. - Page loads and works as usual. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
31 lines
729 B
HTML
31 lines
729 B
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load static %}
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block page_head %}
|
|
<link type="text/css" rel="stylesheet"
|
|
href="{% static 'networks/networks.css' %}">
|
|
{% endblock %}
|
|
|
|
{% block configuration %}
|
|
{% include "connections_list.html" %}
|
|
|
|
{% include "network_topology_main.html" %}
|
|
|
|
{% include "internet_connectivity_main.html" %}
|
|
|
|
<h3>{%trans "Advanced" %} </h3>
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
Advanced networking operations such as bonding, bridging and VLAN
|
|
management are provided by the <a href="/_cockpit/network">Cockpit</a>
|
|
app.
|
|
{% endblocktrans %}
|
|
</p>
|
|
{% endblock %}
|