diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-01-01 23:28:24 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-01-01 23:28:24 +0100 |
commit | 317d81c65dafae1949588cb4a9412d9bdc483a7c (patch) | |
tree | 972523a30f184d4fff8708c9b31948a2422a6826 /templates | |
parent | 96c6f2154007649c32fa5c29e04bb686df00dfff (diff) | |
download | cats-radio-node-317d81c65dafae1949588cb4a9412d9bdc483a7c.tar.gz cats-radio-node-317d81c65dafae1949588cb4a9412d9bdc483a7c.tar.bz2 cats-radio-node-317d81c65dafae1949588cb4a9412d9bdc483a7c.zip |
Improve sidebar
Diffstat (limited to 'templates')
-rw-r--r-- | templates/foot.html | 3 | ||||
-rw-r--r-- | templates/head.html | 54 |
2 files changed, 30 insertions, 27 deletions
diff --git a/templates/foot.html b/templates/foot.html index c3aa9b4..18992e3 100644 --- a/templates/foot.html +++ b/templates/foot.html @@ -1,4 +1,5 @@ - </main> + </main> + </div> </body> </html> {# vi:set et sw=2 ts=2: #} diff --git a/templates/head.html b/templates/head.html index 49beebd..0d7d2bc 100644 --- a/templates/head.html +++ b/templates/head.html @@ -9,32 +9,34 @@ <!-- <script src="/static/index.js" defer></script> --> </head> <body> - <nav> - <div class="h-full p-3 space-y-2 w-60 bg-white text-gray-800"> - <div class="h-full p-3 space-y-2 bg-white text-gray-800"> - <p class="text-lg font-semibold">CATS Radio Node {{ callsign }}</p> - </div> + <div class="flex"> + <nav class="flex-none"> + <div class="h-full min-h-screen p-3 space-y-2 w-60 bg-gray-100 text-gray-800"> + <div class="p-3 space-y-2 bg-gray-100 text-gray-800"> + <p class="text-lg">CATS Radio Node</p> + <p class="text-lg font-semibold">{{ callsign }}</p> + </div> - <div class="divide-y divide-gray-300"> - <ul class="pt-2 pb-4 space-y-1 text-sm"> - <li class="{% if page == ActivePage::Dashboard %} bg-gray-100 text-gray-900 {% endif %}"> - <a href="/" class="flex items-center p-2 space-x-3 rounded-md"> - <i class="fa fa-home" aria-hidden="true"></i><span>Dashboard</span> - </a> - </li> - <li class="{% if page == ActivePage::Incoming %} bg-gray-100 text-gray-900 {% endif %}"> - <a href="/incoming" class="flex items-center p-2 space-x-3 rounded-md"> - <i class="fa fa-inbox" aria-hidden="true"></i><span>Incoming</span> - </a> - </li> - <li class="{% if page == ActivePage::Send %} bg-gray-100 text-gray-900 {% endif %}"> - <a href="/send" class="flex items-center p-2 space-x-3 rounded-md"> - <i class="fa fa-paper-plane-o" aria-hidden="true"></i><span>Send</span> - </a> - </li> - </ul> + <div class="divide-y divide-gray-300"> + <ul class="pt-2 pb-4 space-y-1 text-sm"> + <li class="{% if page == ActivePage::Dashboard %} bg-gray-200 text-gray-900 {% endif %}"> + <a href="/" class="flex items-center p-2 space-x-3 rounded-md"> + <i class="fa fa-home" aria-hidden="true"></i><span>Dashboard</span> + </a> + </li> + <li class="{% if page == ActivePage::Incoming %} bg-gray-200 text-gray-900 {% endif %}"> + <a href="/incoming" class="flex items-center p-2 space-x-3 rounded-md"> + <i class="fa fa-inbox" aria-hidden="true"></i><span>Incoming</span> + </a> + </li> + <li class="{% if page == ActivePage::Send %} bg-gray-200 text-gray-900 {% endif %}"> + <a href="/send" class="flex items-center p-2 space-x-3 rounded-md"> + <i class="fa fa-paper-plane-o" aria-hidden="true"></i><span>Send</span> + </a> + </li> + </ul> + </div> </div> - </div> - </nav> - <main> + </nav> + <main class="flex-auto p-4"> {# vi:set et sw=2 ts=2: #} |