intranet/templates/_navbar.html.twig
2023-08-31 21:19:22 +00:00

55 lines
2.5 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 %}
{% if motdLevel is defined and motdLevel is not empty %}
{% else %}
{% set motdLevel = "info" %}
{% endif %}
<div class="alert alert-primary alert-{{ motdLevel }} alert-dismissible fade show" role="alert" style="margin-bottom:0;">
<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 %}