-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmentors.html
34 lines (32 loc) · 1.04 KB
/
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
31
32
33
34
---
layout: bootstrap
title: Mentors
---
<!-- Main Content -->
<section id="portfolio">
<div class="container">
<!--<div class="row header-row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" id="prizes">Jurisdictions</h2>
</div>
</div>-->
<div class="row">
<h3 class="section-subheading text-muted">Browse mentors for your state...</h3>
{% include jurisdictions_bar.bs.html section="mentors" %}
</div>
</div>
</section>
<!-- Prizes Section -->
<section id="portfolio" class="bg-light-gray">
<div class="container">
<!--<div class="row header-row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" id="prizes">Prizes</h2>
</div>
</div>-->
<div class="row">
{% assign mentors_by_org = site.mentors | group_by:"organisation" %}
{% include mentor_card_by_organisation.bs.html mentors_by_org=mentors_by_org %}
</div>
</div>
</section>