intranet/templates/_navbar.html.twig
2023-07-26 14:01:25 +00:00

50 lines
2.3 KiB
Twig

<!-- Navigation -->
<div class="siteNavbar">
<ul class="list-group list-group-horizontal-md">
<h3 class="navitem">
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="https://www.cram-a-lot.com/">
Cram-A-Lot
</a>
</h3>
<h3 class="navitem">
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="https://myapps.microsoft.com/">
Office365
</a>
</h3>
<h3 class="navitem">
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="http://site:81/directory/home.php">
Directory
</a>
</h3>
<h3 class="navitem">
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="{{ asset('documents/JV Software Basics.docx') }}">
Software Basics
</a>
</h3>
<h3 class="navitem">
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="https://cramalot.on.spiceworks.com/portal">
IT Helpdesk
</a>
</h3>
<h3 class="navitem">
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="{{ path('safetyHome')}}">
Safety Training
</a>
</h3>
<h3 class="navitem">
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="{{ path('complaint')}}">
Anonymous Complaint
</a>
</h3>
</ul>
</div>
{# Display MOTD, if one is set #}
{% if motd is defined and motd is not empty %}
<div class="alert alert-info alert-dismissible fade show" role="alert">
<div class="row justify-content-end">
<div class="col-12 justify-content-center">
<p class="text-center">{{ motd }}</p>
</div>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div></div>
{% endif %}