summaryrefslogtreecommitdiffstats
path: root/templates/activities/_home_menu.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/activities/_home_menu.html')
-rw-r--r--templates/activities/_home_menu.html29
1 files changed, 25 insertions, 4 deletions
diff --git a/templates/activities/_home_menu.html b/templates/activities/_home_menu.html
index c88a1d7..db441a2 100644
--- a/templates/activities/_home_menu.html
+++ b/templates/activities/_home_menu.html
@@ -1,6 +1,27 @@
<nav>
- <a href="/" {% if current_page == "home" %}class="selected"{% endif %}>Home</a>
- <a href="/notifications/" {% if current_page == "notifications" %}class="selected"{% endif %}>Notifications</a>
- <a href="/local/" {% if current_page == "local" %}class="selected"{% endif %}>Local</a>
- <a href="/federated/" {% if current_page == "federated" %}class="selected"{% endif %}>Federated</a>
+ <a href="/" {% if current_page == "home" %}class="selected"{% endif %}>
+ <i class="fa-solid fa-home"></i> Home
+ </a>
+ <a href="/notifications/" {% if current_page == "notifications" %}class="selected"{% endif %}>
+ <i class="fa-solid fa-at"></i> Notifications
+ </a>
+ <a href="/local/" {% if current_page == "local" %}class="selected"{% endif %}>
+ <i class="fa-solid fa-city"></i> Local
+ </a>
+ <a href="/federated/" {% if current_page == "federated" %}class="selected"{% endif %}>
+ <i class="fa-solid fa-globe"></i> Federated
+ </a>
</nav>
+
+{% if current_page == "home" %}
+ <h2>Compose</h2>
+ <form action="/compose/" method="POST" class="compose">
+ {% csrf_token %}
+ {{ form.text }}
+ {{ form.content_warning }}
+ <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 %}