mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
52 lines
1.3 KiB
HTML
52 lines
1.3 KiB
HTML
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
<li class="dropdown">
|
|
<a href="{% url 'help:index' %}" title="{% trans "Help" %}"
|
|
class="dropdown-toggle" data-toggle="dropdown"
|
|
role="button" aria-expanded="false">
|
|
<span class="fa fa-question-circle nav-icon"></span>
|
|
<span class="nav-text hidden-sm hidden-md hidden-lg">
|
|
{% trans "Help" %}
|
|
</span>
|
|
<span class="caret"></span>
|
|
</a>
|
|
<ul class="dropdown-menu" role="menu">
|
|
<li>
|
|
<a href="{% url 'help:manual' %}"
|
|
title="{% trans "Manual"%}">
|
|
{% trans "Manual" %}
|
|
</a>
|
|
</li>
|
|
<li role="separator" class="divider hidden-xs"></li>
|
|
<li>
|
|
<a href="{% url 'help:support' %}"
|
|
title="{% trans "Get Support" %}">
|
|
{% trans "Get Support" %}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="{% url 'help:feedback' %}"
|
|
title="{% trans "Submit Feedback" %}">
|
|
{% trans "Submit Feedback" %}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="{% url 'help:contribute' %}"
|
|
title="{% trans "Contribute" %}">
|
|
{% trans "Contribute" %}
|
|
</a>
|
|
</li>
|
|
<li role="separator" class="divider hidden-xs"></li>
|
|
<li>
|
|
<a href="{% url 'help:about' %}"
|
|
title="{% trans "About" %}">
|
|
{% trans "About" %}
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</li>
|