mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
- use SASS variables for colours and spacing - make navigation an include not a macro (because it doesn’t take any parameters)
19 lines
642 B
HTML
19 lines
642 B
HTML
<nav class="navigation">
|
|
<h3><a href="{{ url_for('.dashboard') }}">Service name</a></h3>
|
|
<ul>
|
|
<li><a href="{{ url_for('.sendsms') }}">Send text messages</a></li>
|
|
<li><a href="{{ url_for('.sendemail') }}">Send emails</a></li>
|
|
<li><a href="{{ url_for('.showjobs') }}">Activity</a></li>
|
|
</ul>
|
|
<ul>
|
|
<li><a href="{{ url_for('.apikeys') }}">API keys and documentation</a></li>
|
|
</ul>
|
|
<ul>
|
|
<li><a href="{{ url_for('.manageusers') }}">Manage users</a></li>
|
|
<li><a href="{{ url_for('.servicesettings') }}">Service settings</a></li>
|
|
</ul>
|
|
<ul>
|
|
<li><a href="/user-profile">Your details</a></li>
|
|
</ul>
|
|
</nav>
|