diff options
author | Andrew Godwin | 2022-11-16 06:53:39 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-16 13:53:40 -0700 |
commit | 495e955378d62dc439c4c210785e5d401bc77f64 (patch) | |
tree | 859813b06314f387470295e752d1f1b3828830a7 /templates/base.html | |
parent | 906ed2f27c9105dbd78f416930f1aa2b49497567 (diff) | |
download | takahe-495e955378d62dc439c4c210785e5d401bc77f64.tar.gz takahe-495e955378d62dc439c4c210785e5d401bc77f64.tar.bz2 takahe-495e955378d62dc439c4c210785e5d401bc77f64.zip |
Tag and visibility handling
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index e465f05..553a2cc 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,6 +8,7 @@ <link rel="stylesheet" href="{% static "css/style.css" %}" type="text/css" media="screen" /> <link rel="stylesheet" href="{% static "fonts/raleway/raleway.css" %}" type="text/css" /> <link rel="stylesheet" href="{% static "fonts/font_awesome/all.min.css" %}" type="text/css" /> + <link rel="manifest" href="/manifest.json" /> <script src="{% static "js/hyperscript.min.js" %}"></script> <script src="{% static "js/htmx.min.js" %}"></script> {% block extra_head %}{% endblock %} @@ -22,7 +23,8 @@ </a> <menu> {% if user.is_authenticated %} - <a href="#"><i class="fa-solid fa-gear"></i> Settings</a> + <a href="/compose/"><i class="fa-solid fa-feather"></i> Compose</a> + <a href="/settings/"><i class="fa-solid fa-gear"></i> Settings</a> <div class="gap"></div> <a href="/identity/select/" class="identity"> {% if not request.identity %} |