forked from distributedgov/distributedgov.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coaching.html
29 lines (29 loc) · 1.15 KB
/
coaching.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: Coaching
description: Get personalized coaching for individuals or small groups at your agency to master the skills needed for effective distributed teams.
excerpt: Get personalized coaching for individuals or small groups at your agency to master the skills needed for effective distributed teams.
---
<div class="container">
<div class="row">
{% for coaching in site.coaching %}
<div class="col-md-4">
<div class="card-group">
<div class="card">
<div class="card-body icon">
<a href="{{ coaching.url }}"><i class="fas fa-shapes"></i></a>
<h2>
<a href="{{ coaching.url }}" class="stretched-link">
{{ coaching.title }}
</a>
</h2>
<a class="btn btn-primary" href="{{ coaching.url }}" role="button">Learn more</a>
</div>
</div>
<div class="card-footer">
</div>
</div>
</div>
{% endfor %}
</div>
</div>