2022-11-13 23:14:38 +00:00
|
|
|
<nav>
|
2022-11-23 02:03:19 +00:00
|
|
|
<a href="/" {% if current_page == "home" %}class="selected"{% endif %} title="Home">
|
2022-11-18 00:43:00 +00:00
|
|
|
<i class="fa-solid fa-home"></i> Home
|
|
|
|
</a>
|
2022-11-18 02:21:00 +00:00
|
|
|
{% if request.user.is_authenticated %}
|
2022-11-23 02:03:19 +00:00
|
|
|
<a href="{% url "notifications" %}" {% if current_page == "notifications" %}class="selected"{% endif %} title="Notifications">
|
2022-11-18 02:21:00 +00:00
|
|
|
<i class="fa-solid fa-at"></i> Notifications
|
|
|
|
</a>
|
2022-11-23 02:03:19 +00:00
|
|
|
<a href="{% url "local" %}" {% if current_page == "local" %}class="selected"{% endif %} title="Local">
|
2022-11-18 02:21:00 +00:00
|
|
|
<i class="fa-solid fa-city"></i> Local
|
|
|
|
</a>
|
2022-11-23 02:03:19 +00:00
|
|
|
<a href="{% url "federated" %}" {% if current_page == "federated" %}class="selected"{% endif %} title="Federated">
|
2022-11-18 02:21:00 +00:00
|
|
|
<i class="fa-solid fa-globe"></i> Federated
|
|
|
|
</a>
|
|
|
|
<h3></h3>
|
2022-11-23 02:03:19 +00:00
|
|
|
<a href="{% url "compose" %}" {% if top_section == "compose" %}class="selected"{% endif %} title="Compose">
|
2022-11-18 02:21:00 +00:00
|
|
|
<i class="fa-solid fa-feather"></i> Compose
|
|
|
|
</a>
|
2022-11-23 02:03:19 +00:00
|
|
|
<a href="{% url "search" %}" {% if top_section == "search" %}class="selected"{% endif %} title="Search">
|
2022-11-18 02:21:00 +00:00
|
|
|
<i class="fa-solid fa-search"></i> Search
|
|
|
|
</a>
|
2022-11-23 02:03:19 +00:00
|
|
|
<a href="{% url "settings" %}" {% if top_section == "settings" %}class="selected"{% endif %} title="Settings">
|
2022-11-18 02:21:00 +00:00
|
|
|
<i class="fa-solid fa-gear"></i> Settings
|
|
|
|
</a>
|
|
|
|
{% else %}
|
2022-11-23 02:03:19 +00:00
|
|
|
<a href="{% url "local" %}" {% if current_page == "local" %}class="selected"{% endif %} title="Local Posts">
|
2022-11-18 02:21:00 +00:00
|
|
|
<i class="fa-solid fa-city"></i> Local Posts
|
|
|
|
</a>
|
|
|
|
<h3></h3>
|
2022-11-18 07:09:04 +00:00
|
|
|
{% if config.signup_allowed %}
|
2022-11-23 02:03:19 +00:00
|
|
|
<a href="{% url "signup" %}" {% if current_page == "signup" %}class="selected"{% endif %} title="Create Account">
|
2022-11-18 07:09:04 +00:00
|
|
|
<i class="fa-solid fa-user-plus"></i> Create Account
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
2022-11-18 02:21:00 +00:00
|
|
|
{% endif %}
|
2022-11-13 23:14:38 +00:00
|
|
|
</nav>
|
2022-11-18 00:43:00 +00:00
|
|
|
|
|
|
|
{% if current_page == "home" %}
|
|
|
|
<h2>Compose</h2>
|
|
|
|
<form action="/compose/" method="POST" class="compose">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form.text }}
|
|
|
|
{{ form.content_warning }}
|
2022-11-18 01:52:00 +00:00
|
|
|
<input type="hidden" name="visibility" value="0">
|
2022-11-18 00:43:00 +00:00
|
|
|
<div class="buttons">
|
|
|
|
<span class="button toggle" _="on click toggle .enabled then toggle .hidden on #id_content_warning">CW</span>
|
|
|
|
<button>{% if config_identity.toot_mode %}Toot!{% else %}Post{% endif %}</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endif %}
|