Skip to content

Commit 6f141ed

Browse files
Merge pull request #60 from CodeWithGroup/feature/mentor-application
Added mentor application form and associated styling
2 parents fc2d825 + de1b1e0 commit 6f141ed

File tree

8 files changed

+468
-7
lines changed

8 files changed

+468
-7
lines changed

_data/questions/how-to-mentor.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ question: "How do I become a mentor/event organiser?"
33
answer: " <p>
44
First of all, let someone know you're interested. Have a chat with one of the existing mentors or
55
someone on the committee so that we can get an idea of what you want to achieve and what support you
6-
need. From there we'll be able to add you into the appropriate Slack channels, give you a folder
7-
of your own in our Google Drive, show you how to set up events, and so on.
6+
need.
7+
</p>
8+
<p>
9+
When you're ready to begin mentoring, complete the
10+
<a href=\"!SITE_URL!/mentor-application\">mentor application form</a>. From there we'll be able to
11+
add you into the appropriate Slack channels, give you a folder of your own in our Google Drive, show
12+
you how to set up events, and so on.
813
</p>"
14+
15+

_includes/question.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<div id="collapse-{{ include.question.name }}" class="collapse" aria-labelledby="heading-{{ include.question.name }}" data-parent="#accordion">
1010
<div class="card-body">
1111
<p>
12-
{{ include.question.answer }}
12+
{{ include.question.answer | replace: '!SITE_URL!', site.url }}
1313
</p>
1414
</div>
1515
</div>

admin.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ <h4>
2929
<a href="https://trello.com/codewith2" target="_blank">Trello</a>
3030
</h4>
3131
<h4>
32-
<a href="{{site.url}}/event-process" target="_blank">Event process</a>
32+
<a href="{{site.url}}/eventprocess">Event Process</a>
33+
</h4>
34+
<h4>
35+
<a href="{{site.url}}/mentor-process">Mentor Application Process</a>
3336
</h4>
3437
</div>
3538
</div>

css/style.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ hr {
171171

172172
iframe {
173173
width: 100%;
174-
height: 300vh;
174+
height: 100vh;
175175
}
176176

177177
.center-when-small {
@@ -322,6 +322,10 @@ div.row.intro {
322322
margin: 2em 0;
323323
}
324324

325+
div.row.intro>div {
326+
min-height: 72px;
327+
}
328+
325329
p.intro-icon {
326330
color: var(--colour-dark-primary);
327331
}
@@ -330,7 +334,7 @@ p.intro-icon {
330334
color: var(--colour-dark-primary);
331335
} */
332336

333-
p.intro-text {
337+
div.intro-text>p {
334338
font-size: large;
335339
}
336340

feedback.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
title: Feedback
1111
---
1212

13-
<iframe name="feedback" class="feedback-form"
13+
<iframe name="feedback" class="embedded-google-form"
1414
src="https://docs.google.com/forms/d/e/1FAIpQLSfp26KbuYZXc49kXPfAlZaq9IfAvAtDStAK8aCSC0-nVLqwtQ/viewform?embedded=true"
1515
frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>

images/flowchart-mentor.svg

Lines changed: 412 additions & 0 deletions
Loading

mentor-application.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
permalink: /mentor-application/
3+
layout: default
4+
suffixes:
5+
- Assistance,
6+
- Power,
7+
- Resources,
8+
- Responsibility,
9+
- Us
10+
title: Mentor Application
11+
---
12+
13+
<iframe name="mentor-application" class="embedded-google-form"
14+
src="https://docs.google.com/forms/d/e/1FAIpQLSdMeoHoDEqnTaZ14Gcr__otLs5pdXMLMlaiD4ZqMhAnmEPIfg/viewform?embedded=true"
15+
frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>

mentor-process.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
permalink: /mentor-process/
3+
layout: default
4+
suffixes:
5+
- Assistance,
6+
- Power,
7+
- Resources,
8+
- Responsibility,
9+
- Us
10+
title: Mentor Application Process
11+
sitemap: false
12+
---
13+
14+
<h1>Mentor Application Process</h1>
15+
16+
<div class="row">
17+
<div class="col-12">
18+
<img class="img-fluid" src="{{site.url}}/images/flowchart-mentor.svg" style="max-width: 24em;">
19+
</div>
20+
</div>

0 commit comments

Comments
 (0)