-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmentorship-resources.html
More file actions
32 lines (31 loc) · 1.38 KB
/
mentorship-resources.html
File metadata and controls
32 lines (31 loc) · 1.38 KB
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
---
layout: default
title: Mentorship Resources
body_class: page page-mentorship-resources
intro: |
Whether you’re a mentee looking to navigate your journey, a mentor aiming to provide the best guidance, or a seasoned mentor seeking quick tips, we have the tools you need. Explore our guides for insightful mentorship advice and strategies.
---
<div class="container">
{% include page-intro.html %}
</div>
<div class="container featured-content">
<div class="row">
<div class="row-content col-12">
<div class="card-deck">
{% for resources in site.data.resources %}
<div class="card-column col-12 col-lg-6 col-xl-4">
<div class="card-resource card card-s card-horizontal">
<div class="card-media col-5">
<img src="{{ resources.image.path }}" alt="{{ resources.image.alt }}">
</div>
<div class="card-body col-7">
<h2 class="card-title">{{resources.title}}</h2>
<a href={{resources.link}} class="ext-link" target="_blank" rel="noopener">Open <span class="icon">{% include icons/arrow-right.svg %}</span></a>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>