-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (85 loc) · 5.06 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
layout: default
title: Keegan Parker
---
<div class="content-container" id="about-container">
<div class="content flex">
<div id="hi">Hello World!</div>
<div class="circle-photo-container" id="about-photo-container">
<div class="circle-photo" id="about-photo">
<img src="/images/face.jpg" />
</div>
</div>
<div class="flex" id="intro">
<div id="about"><p>I'm Keegan Parker, a Software Developer from Calgary, Alberta. I'm a Computer Science student at the University of Waterloo, where I am in my 3A Term.</p>
<p>I love building projects to satisfy my own curiosity and learn new technologies. You can see my <a id="projects-link" href="#projects">projects</a> down below. They're all open-source, so check out the source code if you'd like.</p>
<p>In my free time, I enjoy playing games of all sorts, testing different craft beers, and binge-watching way too many TV shows. I am also active in student politics, where I have worked with the UW Mathematics Society for over two years.</p>
<p>You can contact me by e-mail at <a href="mailto:[email protected]">[email protected]</a>, or at any of the other networks I have listed in the nav bar.</p>
</div>
</div>
</div>
</div>
<div class="content-container" id="articles-container">
<div class="content" id="articles-content">
<div class="header" id="articles">Articles</div>
<ul class="articles-list">
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a><br>
<span class="post-date">{{ post.date | date_to_long_string }}</span>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="content-container" id="projects-container">
<div class="header" id="projects">Projects</div>
<div class="content flex">
<div class="project-photo">
<img src="/images/mafioso.png" />
<div class="project-info">
<div class="info-content" id="erb-info">
<h2>mafioso.io</h2>
<p>A website written in Node.js/Express, with a front end in React. Deployed with nginx on Digital Ocean.</p>
<p>An in development website that allows users to play the popular party game Mafia online. The game UI will be built using React and WebSockets.</p>
<a href="https://github.com/kdparker/Mafioso"><i class="fa fa-github"></i></a>
<a href="https://www.mafioso.io/"><i class="fa fa-globe"></i></a>
</div>
</div>
</div>
<div class="project-photo">
<img src="/images/mathsoc.png" />
<div class="project-info">
<div class="info-content" id="erb-info">
<h2>MathSoc Website Rebuild</h2>
<p>A website written in Python with Django, to be used as the new mathsoc.uwaterloo.ca website.</p>
<p>A team project that seeks to rebuild the MathSoc website with Django. I built the new booking system that integrates with the Google Calendar API.</p>
<a href="https://github.com/MathSoc/MathSocWebsiteRebuild"><i class="fa fa-github"></i></a>
</div>
</div>
</div>
<div class="project-photo">
<img src="/images/erbmagicleague.jpg" />
<div class="project-info">
<div class="info-content" id="erb-info">
<h2>Erb Magic League</h2>
<p>A website written in Python with Django, deployed with Heroku.</p>
<p>Served as the homepage for the Magic: The Gathering league I ran in my house. It featured the ability for players to report matches to get placement on an elo based ladder system, as well as a basic trading system.</p>
<a href="https://github.com/kdparker/magic_league_ladder"><i class="fa fa-github"></i></a>
<a href="http://erbmagicleague.herokuapp.com/"><i class="fa fa-globe"></i></a>
</div>
</div>
</div>
<div class="project-photo">
<img src="/images/RustySmash.jpg" />
<div class="project-info">
<div class="info-content" id="rusty-info">
<h2>Rusty Smash</h2>
<p>An in development game built in Rust with Piston.</p>
<p>The goal of this ongoing project is to create a smash brothers type game, where it is easy to quickly create and add characters and stages in to make it maximally customizable.</p>
<a href="https://github.com/kdparker/RustySmash"><i class="fa fa-github"></i></a>
</div>
</div>
</div>
</div>
</div>