Skip to content

Commit d8d7127

Browse files
committed
Move profiles to a folder called 'people'
1 parent 14128c7 commit d8d7127

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

about.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ <h3>Committee</h3>
3434
<div class="col-sm-5 col-md-4 col-lg-3 card text-center">
3535
<img class="profile-photo" src="images/drew-profile-photo.png">
3636
<br />
37-
<h4>Drew Morgan</h4>
37+
<h4><a href="people.html#drew-morgan">Drew Morgan</a></h4>
3838
<smaller>Benevolent Leader</smaller>
3939
</div>
4040
<div class="col-sm-5 col-md-4 col-lg-3 card text-center">
4141
<img class="profile-photo" src="images/keiran-profile-photo.png">
4242
<br />
43-
<h4>Keiran Wilkinson</h4>
43+
<h4><a href="people.html#keiran-wilkinson">Keiran Wilkinson</a></h4>
4444
<smaller>Vice Benevolent Leader</smaller>
4545
</div>
4646
<div class="col-sm-5 col-md-4 col-lg-3 card text-center">

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ <h1>Welcome to CodeWith!</h1>
1313
</div>
1414
<div class="col-sm-9 col-md-10">
1515
<p class="intro-text">CodeWith is about free adult coding tuition for everyone. We offer a friendly space where
16-
anyone, from complete beginners to accomplished software engineers, can get together, learn and share
17-
a passion for coding. For more information, check out our <a href="about.html">about page</a>.
16+
anyone, from complete beginners to accomplished software engineers, can get together with like-minded people
17+
to learn and share a passion for coding. For more information, check out our <a href="about.html">about page</a>.
1818
</p>
1919
</div>
2020
</div>

js/suffix-lists.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@ var Languages = [
5757
"SQL"
5858
];
5959

60-
var People = people;
60+
var People = [
61+
"Drew",
62+
"Keiran",
63+
"Us"
64+
];
6165

6266
var Resources = [
6367
"AndroidStudio",

people.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
<h1>{{page.title}}</h1>
77

88
<br />
9-
{% include_relative people-drew.html %}
9+
{% include_relative people/people-drew.html %}
1010
<br />
11-
{% include_relative people-keiran.html %}
11+
{% include_relative people/people-keiran.html %}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<a name="drew-morgan"></a>
12
<div class="row person-blurb">
23
<div class="col-md-4 col-lg-3">
34
<div class="mb-2 box-shadow text-center">
@@ -74,7 +75,7 @@ <h5>Drew can help with...</h5>
7475
<span class="badge badge-secondary">Git</span>
7576
<span class="badge badge-secondary">SVN</span>
7677
<span class="badge badge-secondary">TFS</span>
77-
78+
7879
<span class="badge badge-secondary">IDLE</span>
7980
<span class="badge badge-secondary">Visual Studio</span>
8081
<span class="badge badge-secondary">VS Code</span>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<a name="keiran-wilkinson"></a>
12
<div class="row person-blurb">
23
<div class="col-md-4 col-lg-3">
34
<div class="mb-2 box-shadow text-center">

0 commit comments

Comments
 (0)