Skip to content

Commit 911d5fa

Browse files
committed
Update People page
1 parent 547dc13 commit 911d5fa

File tree

5 files changed

+105
-15
lines changed

5 files changed

+105
-15
lines changed

Gemfile.lock

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ GEM
260260
unf_ext (0.0.7.7)
261261
unf_ext (0.0.7.7-x64-mingw32)
262262
unicode-display_width (1.7.0)
263+
wdm (0.1.1)
263264
zeitwerk (2.4.2)
264265

265266
PLATFORMS
@@ -268,6 +269,7 @@ PLATFORMS
268269

269270
DEPENDENCIES
270271
github-pages
272+
wdm (>= 0.1.0)
271273

272274
BUNDLED WITH
273-
2.2.16
275+
2.3.17

_data/people/0001.yaml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
first_name: "Drew"
2+
last_name: "Morgan"
3+
anchor: "drew-morgan"
4+
photo: "drew-profile-photo.png"
5+
roles: "Benevolent Leader, Mentor"
6+
twitter_handle: "dangerworm"
7+
description_paragraphs:
8+
- >
9+
Drew has been coding since he was 7 years old and has worked in the healthcare, education and
10+
finance sectors. After qualifying as a physics teacher in 2011, he taught for three years before
11+
returning to software development and now works as a full-stack web and applications developer
12+
for a healthcare company. He also has a
13+
<a href="https://play.google.com/store/apps/details?id=com.drewmorgan.propertyprices">mobile app</a>
14+
on the Google Play Store.
15+
- >
16+
Drew loves science and technology and at university studied Physics for two years before changing
17+
course and graduating with a degree in Computer Science with Artificial Intelligence. He plays
18+
piano, tuba, guitar and clarinet, regularly goes bouldering indoors and is a BSAC scuba diving
19+
instructor. Drew loves to share his experiences and will talk about anything with anyone.
20+
21+
languages:
22+
- .Net
23+
- C#
24+
- CSS
25+
- Cypher
26+
- HTML
27+
- Javascript
28+
- jQuery
29+
- Neo4J
30+
- Python
31+
- SQL
32+
- Typescript
33+
- Visual Basic
34+
35+
technologies:
36+
- JSON
37+
- Linux
38+
- NodeJS
39+
- React
40+
- WPF
41+
- Windows Forms
42+
- Xamarin
43+
44+
tools:
45+
- Docker
46+
- Git
47+
- GitHub
48+
- IDLE
49+
- Visual Studio
50+
- VS Code

_data/people/0002.yaml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
first_name: "Keiran"
2+
last_name: "Wilkinson"
3+
anchor: "keiran-wilkinson"
4+
photo: "keiran-profile-photo.png"
5+
roles: "Deputy Benevolent Leader, Mentor"
6+
twitter_handle: "keiranwdigital"
7+
description_paragraphs:
8+
- >
9+
After learning to code 8 years ago Keiran worked for a small startup digital agency while completing his A levels.
10+
More recently Keiran works in the travel sector as a degree apprentice Technical Analyst while completing a degree in Digital and Technology solutions.
11+
- >
12+
When not working Keiran spends his time at Hackspace Manchester, working on various projects (most of which never get finished!).
13+
He also plays the euphonium and enjoys anything aviation related, including travelling to various photography events around the country.
14+
15+
languages:
16+
- ASP
17+
- CSS
18+
- HTML
19+
- Java
20+
- Javascript
21+
- jQuery
22+
- PHP
23+
- Python
24+
- SQL
25+
- VB.Net
26+
27+
technologies:
28+
- JSON
29+
- MySQL
30+
- SQL Server
31+
- Windows Forms
32+
- Wordpress
33+
34+
tools:
35+
- Azure Data Studio
36+
- Eclipse
37+
- Git
38+
- IDLE
39+
- Visual Studio
40+
- VS Code

people.html

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
- Jim,
88
- Jonathan,
99
- Liz,
10+
- Marie,
11+
- Peter,
1012
- Sean,
1113
- Simon,
1214
- Us
@@ -15,25 +17,21 @@
1517

1618
<h1>{{page.title}}</h1>
1719

18-
<br />
19-
{% include_relative pages-people/people-drew.html %}
20-
<br />
21-
{% include_relative pages-people/people-keiran.html %}
20+
{% for person_hash in site.data.people %}
21+
{% assign person = person_hash[1] %}
22+
<br />
23+
{% include_relative _includes/person.html person=person %}
24+
{% endfor %}
25+
2226
<br />
2327
{% include_relative pages-people/people-jim.html %}
2428
<br />
29+
{% include_relative pages-people/people-liz.html %}
30+
<br />
2531
{% include_relative pages-people/people-marie.html %}
2632
<br />
27-
{% include_relative pages-people/people-sean.html %}
33+
{% include_relative pages-people/people-peter.html %}
2834
<br />
29-
{% include_relative pages-people/people-liz.html %}
35+
{% include_relative pages-people/people-sean.html %}
3036
<br />
3137
{% include_relative pages-people/people-simon.html %}
32-
<br />
33-
{% include_relative pages-people/people-peter.html %}
34-
35-
{% for person_hash in site.data.people %}
36-
{% assign person = person_hash[1] %}
37-
<br />
38-
{% include_relative _includes/person.html person=person %}
39-
{% endfor %}

0 commit comments

Comments
 (0)