forked from distributedgov/distributedgov.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtraining.html
29 lines (29 loc) · 1.2 KB
/
training.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
layout: default
title: Training
description: Get customizable training for small or large groups at your agency on remote / telework best practices -- from setup and security to communications and culture.
excerpt: Get customizable training for small or large groups at your agency on remote / telework best practices -- from setup and security to communications and culture.
---
<div class="container">
<div class="row">
{% for training in site.training %}
<div class="col-md-4">
<div class="card-group">
<div class="card">
<div class="card-body icon">
<a href="{{ training.url }}"><i class="fas fa-certificate"></i></a>
<h2>
<a href="{{ training.url }}" class="stretched-link">
{{ training.title }}
</a>
</h2>
<a class="btn btn-primary" href="{{ training.url }}" role="button">Learn more</a>
</div>
</div>
<div class="card-footer">
</div>
</div>
</div>
{% endfor %}
</div>
</div>