mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
24 lines
426 B
HTML
24 lines
426 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load static %}
|
|
|
|
{% block page_head %}
|
|
<style type="text/css">
|
|
a.navbar-brand {
|
|
display: none;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block mainmenu_left_collapse %}
|
|
{% endblock %}
|
|
|
|
{% block mainmenu_right %}
|
|
{% if user.is_authenticated %}
|
|
{% include "firstboot_navbar.html" %}
|
|
{% endif %}
|
|
{% endblock %}
|