forked from govhack-science/govhack-science.github.io
-
Notifications
You must be signed in to change notification settings - Fork 7
/
mentors.html
30 lines (28 loc) · 879 Bytes
/
mentors.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
30
---
layout: bootstrap
title: Mentors
#sections:
# cta:
# label: Register as a mentor
# href: https://govhack.formstack.com/forms/mentors
# target: _blank
---
<!-- Mentors Rollup -->
<section id="portfolio">
<div class="container">
<div class="row header-row">
<div class="col-lg-12 text-center">
<h1 data-toc-skip>Mentors</h1>
</div>
</div>
<div class="row">
{% if site.mentors.size == 0 %}
<p>We'll be making information about our awesome crew of mentors available soon.
Watch this space!</p>
{% else %}
{% assign mentors_by_jurisdn = site.mentors | group_by:"jurisdiction" %}
{% include mentor_card_by_jurisdiction.bs.html mentors_by_jurisdn=mentors_by_jurisdn %}
{% endif %}
</div>
</div>
</section>