forked from distributedgov/distributedgov.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsulting.html
29 lines (29 loc) · 1.15 KB
/
consulting.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: Consulting
description: Get one-on-one consulting for orientation on telework policies and best practices, along with recommendations for your agency.
excerpt: Get one-on-one consulting for orientation on telework policies and best practices, along with recommendations for your agency.
---
<div class="container">
<div class="row">
{% for consulting in site.consulting %}
<div class="col-md-4">
<div class="card-group">
<div class="card">
<div class="card-body icon">
<a href="{{ consulting.url }}"><i class="fas fa-lightbulb"></i></a>
<h2>
<a href="{{ consulting.url }}" class="stretched-link">
{{ consulting.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>