intranet/templates/Training/Safety/safetyHome.html.twig
2023-06-29 20:04:14 +00:00

47 lines
1.4 KiB
Twig

<!DOCTYPE html>
<html>
{{ include('_header.html.twig') }}
<body>
{{ include('_navbar.html.twig')}}
<div class="container">
<div class="row">
<div class="col-12">
<h3> Safety Topics </h3>
<p>
Click on the topics below to see how you can keep yourself and others safe in the workplace.
<strong>Remember: Safety starts with <i>you!</i></strong>
</p>
</div>
</div>
<a class="col-12 btn btn-danger my-2" href="/training/safety/quiz">
<h4>Take the Workplace Safety Quiz</h4>
</a>
{# Cards #}
<div class="card-group">
{% for card, links in content.Cards %}
<div class="card text-center service-card">
<div class="card-body">
<div class="card-header">
<h5 class="card-title">{{card}}</h5>
</div>
<div class="card-text">
<ul class="list-group list-group-flush">
{% for link in links %}
<a class="list-group-item list-group-item-action list-item" href="/Training/Safety/Topics/{{link.url}}">{{link.title}}</a>
{% endfor %}
</ul>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</body>
</html>