1

Add events listing

This commit is contained in:
Evan Pratten 2020-04-19 09:55:00 -04:00
parent 2443e477db
commit faad855e7e
No known key found for this signature in database
GPG Key ID: 93AC7B3D071356D3
5 changed files with 237 additions and 4 deletions

184
_data/events.json Normal file
View File

@ -0,0 +1,184 @@
[
{
"name": "Ludum Dare 46",
"upcoming":false,
"date": {
"start": "2020-04-17",
"end": "2020-04-20"
},
"team": {
"yes": true,
"url":"https://github.com/rsninja722/LudumDare46"
},
"url":"https://ldjam.com/events/ludum-dare/46",
"info":"Participant"
},
{
"name": "FRC Humber Collage District Event",
"upcoming":false,
"date": {
"start": "2020-03-06",
"end": "2020-03-08"
},
"team": {
"yes": true,
"url":"http://raiderrobotics.org"
},
"url":"https://www.thebluealliance.com/event/2020onto3",
"info":"Finalists & Award winners"
},
{
"name": "Canadian Computing Competition 2020",
"upcoming":false,
"date": {
"start": "2020-02-20",
"end": "2020-02-20"
},
"team": {
"yes": false,
"url":""
},
"url":"https://www.cemc.uwaterloo.ca/contests/computing.html",
"info":"Participant"
},
{
"name": "Google CTF 2019",
"upcoming":false,
"date": {
"start": "2019-06-22",
"end": "2019-06-23"
},
"team": {
"yes": false,
"url":""
},
"url":"https://capturetheflag.withgoogle.com",
"info":"Participant"
},
{
"name": "FRC District Championship 2019",
"upcoming":false,
"date": {
"start": "2019-04-10",
"end": "2019-04-13"
},
"team": {
"yes": true,
"url":"http://raiderrobotics.org"
},
"url":"https://www.thebluealliance.com/event/2019oncmp1",
"info":"Quarter-finalists & Award winners"
},
{
"name": "FRC Western University District Event",
"upcoming":false,
"date": {
"start": "2019-04-05",
"end": "2019-04-06"
},
"team": {
"yes": true,
"url":"http://raiderrobotics.org"
},
"url":"https://www.thebluealliance.com/event/2019onlon",
"info":"Semi-finalists & Award winners"
},
{
"name": "ECOO Programming Contest 2019",
"upcoming":false,
"date": {
"start": "2019-03-26",
"end": "2019-03-26"
},
"team": {
"yes": false,
"url":""
},
"url":"https://ecoocs.org/",
"info":"Participant"
},
{
"name": "FRC Ryerson University District Event",
"upcoming":false,
"date": {
"start": "2019-03-14",
"end": "2019-03-16"
},
"team": {
"yes": true,
"url":"http://raiderrobotics.org"
},
"url":"https://www.thebluealliance.com/event/2019onto1",
"info":"Quarter-finalists & Award winners"
},
{
"name": "Canadian Computing Competition 2019",
"upcoming":false,
"date": {
"start": "2019-02-20",
"end": "2019-02-20"
},
"team": {
"yes": false,
"url":""
},
"url":"https://www.cemc.uwaterloo.ca/contests/computing.html",
"info":"Participant"
},
{
"name": "Google Foobar",
"upcoming":false,
"date": {
"start": "2018-09-09",
"end": "2018-09-11"
},
"team": {
"yes": false,
"url":""
},
"url":"https://foobar.withgoogle.com/",
"info":"Completed all challenges"
},
{
"name": "ECOO Programming Contest 2018",
"upcoming":false,
"date": {
"start": "2018-04-28",
"end": "2018-04-28"
},
"team": {
"yes": false,
"url":""
},
"url":"https://ecoocs.org/",
"info":"Participant"
},
{
"name": "FRC University of Waterloo District Event",
"upcoming":false,
"date": {
"start": "2018-03-22",
"end": "2018-03-24"
},
"team": {
"yes": true,
"url":"http://raiderrobotics.org"
},
"url":"https://www.thebluealliance.com/event/2018onwat",
"info":"Quarter-finalists & Award winners"
},
{
"name": "FRC Georgian College District Event",
"upcoming":false,
"date": {
"start": "2018-03-02",
"end": "2018-03-04"
},
"team": {
"yes": true,
"url":"http://raiderrobotics.org"
},
"url":"https://www.thebluealliance.com/event/2018onbar",
"info":"Quarter-finalists & Award winners"
}
]

View File

@ -10,6 +10,7 @@
<div class="navbar-nav ml-auto">
<a class="nav-item nav-link" href="{{site.baseurl}}/blog">Blog</a>
<a class="nav-item nav-link" href="{{site.baseurl}}/projects">Projects</a>
<a class="nav-item nav-link" href="{{site.baseurl}}/events">Events</a>
<!-- <a class="nav-item nav-link" href="{{site.baseurl}}/music">Music</a> -->
<!-- <a class="nav-item nav-link" href="{{site.baseurl}}/documentation">Documentation</a> -->
<a class="nav-item nav-link" href="{{site.baseurl}}/about">About</a>

47
_layouts/events.html Normal file
View File

@ -0,0 +1,47 @@
{% include head.html %}
<body>
<div class="site-ctr">
<!-- Navbar -->
{% include nav.html %}
<div class="reactive-bg">
<div class="post container">
<h1>Events</h1>
<p>Here is a list of notable events I am attending / have attended</p>
<hr>
<div class="list-group" id="posts">
{% for event in site.data.events %}
<a href="{{event.url}}" class="list-group-item list-group-item-action">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">
{% if event.upcoming %}
<span class="badge badge-info">Upcoming</span>
{% else %}
{% if event.team.yes %}
<span class="badge badge-success">Team</span>
{% else %}
<span class="badge badge-danger">Solo</span>
{% endif %}
{% endif %}
<br>
{{event.name}}
</h5>
<small style="text-align:right;">{{event.date.start}} to {{event.date.end}}</small>
</div>
<p class="card-text">{{event.info}}</p>
</a>
{% endfor %}
</div>
</div>
</div>
</div>
{% include footer.html %}
</body>

View File

@ -7,7 +7,7 @@ permalink: /about/
## Chat with me
If you want to contact me, you can do so via email (ewpratten @ \<this website's domain name\>).
I use PGP keys (mt keys and history are listed below), so feel free to contact me securely via GPG. If you don't trust Microsoft (owns GitHub, who hosts this site) to serve you the correct file, you can find my key on []() and []().
I use PGP keys (mt keys and history are listed below), so feel free to contact me securely via GPG.
My current PGP key fingerprint is: `3D98 479A DE42 85A3 21F6 6DE4 DAB2 7917 6352 D880`.
```
@ -34,7 +34,7 @@ The following is my key history:
</div>
## My social
## My socials
I exist in various places around the internet. Mainly:
- [Twitter](https://twitter.com/{{site.twitter_username}})
@ -51,11 +51,9 @@ Currently, I use the following hardware:
- Lenovo T480
- 16GB of RAM
- 500GB Crucial SSD
- 1080p display
- Ubuntu 18.04 minimal
- Google Pixel 3a XL
- Stock android
- HP 27es monitor
## My crypto addresses

3
events.md Normal file
View File

@ -0,0 +1,3 @@
---
layout: events
---