diff options
author | Andrew Godwin | 2022-11-22 19:03:19 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-22 19:03:19 -0700 |
commit | aaad289c5211570ec98ddd9d753517ef827686dc (patch) | |
tree | 313c11650db757695fdfb999ca5f270ebe2f6394 /templates/activities/_menu.html | |
parent | 48154fb20e41bf3f4ba2de42de32c3e75d059941 (diff) | |
download | takahe-aaad289c5211570ec98ddd9d753517ef827686dc.tar.gz takahe-aaad289c5211570ec98ddd9d753517ef827686dc.tar.bz2 takahe-aaad289c5211570ec98ddd9d753517ef827686dc.zip |
Add titles to menus for collapsed mode
Diffstat (limited to 'templates/activities/_menu.html')
-rw-r--r-- | templates/activities/_menu.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/templates/activities/_menu.html b/templates/activities/_menu.html index 01f34cd..4b167af 100644 --- a/templates/activities/_menu.html +++ b/templates/activities/_menu.html @@ -1,34 +1,34 @@ <nav> - <a href="/" {% if current_page == "home" %}class="selected"{% endif %}> + <a href="/" {% if current_page == "home" %}class="selected"{% endif %} title="Home"> <i class="fa-solid fa-home"></i> Home </a> {% if request.user.is_authenticated %} - <a href="{% url "notifications" %}" {% if current_page == "notifications" %}class="selected"{% endif %}> + <a href="{% url "notifications" %}" {% if current_page == "notifications" %}class="selected"{% endif %} title="Notifications"> <i class="fa-solid fa-at"></i> Notifications </a> - <a href="{% url "local" %}" {% if current_page == "local" %}class="selected"{% endif %}> + <a href="{% url "local" %}" {% if current_page == "local" %}class="selected"{% endif %} title="Local"> <i class="fa-solid fa-city"></i> Local </a> - <a href="{% url "federated" %}" {% if current_page == "federated" %}class="selected"{% endif %}> + <a href="{% url "federated" %}" {% if current_page == "federated" %}class="selected"{% endif %} title="Federated"> <i class="fa-solid fa-globe"></i> Federated </a> <h3></h3> - <a href="{% url "compose" %}" {% if top_section == "compose" %}class="selected"{% endif %}> + <a href="{% url "compose" %}" {% if top_section == "compose" %}class="selected"{% endif %} title="Compose"> <i class="fa-solid fa-feather"></i> Compose </a> - <a href="{% url "search" %}" {% if top_section == "search" %}class="selected"{% endif %}> + <a href="{% url "search" %}" {% if top_section == "search" %}class="selected"{% endif %} title="Search"> <i class="fa-solid fa-search"></i> Search </a> - <a href="{% url "settings" %}" {% if top_section == "settings" %}class="selected"{% endif %}> + <a href="{% url "settings" %}" {% if top_section == "settings" %}class="selected"{% endif %} title="Settings"> <i class="fa-solid fa-gear"></i> Settings </a> {% else %} - <a href="{% url "local" %}" {% if current_page == "local" %}class="selected"{% endif %}> + <a href="{% url "local" %}" {% if current_page == "local" %}class="selected"{% endif %} title="Local Posts"> <i class="fa-solid fa-city"></i> Local Posts </a> <h3></h3> {% if config.signup_allowed %} - <a href="{% url "signup" %}" {% if current_page == "signup" %}class="selected"{% endif %}> + <a href="{% url "signup" %}" {% if current_page == "signup" %}class="selected"{% endif %} title="Create Account"> <i class="fa-solid fa-user-plus"></i> Create Account </a> {% endif %} |