-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
59 lines (58 loc) · 2.42 KB
/
about.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
---
layout: page
title: About
---
<div class="header-box centered">
<h1 class="title">About Us.</h1>
<div class="main-box centered">
<div class="body-2col-parent">
<div class="body-2col-child">
<img src="assets/img/ubco-campus.jpg" />
</div>
<div class="body-2col-child">
<p>
The UBCO Video Game Development Club is the best place to learn about and participate in game development at
the University of British Columbia Okanagan. It is run by some of UBCO's finest students, all of which are
passionate about the art of game development and love to teach, learn, and collaborate. Throughout the school
year, we run events to encourage people to make video games, play video games, and overall have fun. Don't
know how to make a video game, but want to learn? You're welcome here as well! We run workshops and other
events to help people learn how to make games, and have an amazing mentorship program to help you along the
way.
</p>
<p>Come meet us on <a href="https://discord.gg/ydXaAjQ">Discord</a>, or any of our other social medias:</p>
<div class="socials">
<a class="social-icon" href="https://discord.gg/ydXaAjQ" target="_blank" rel="noopener noreferrer">
<img src="assets/img/discord-logo-smol.png" />
</a>
<a
class="social-icon"
href="https://github.com/ubco-video-game-development-club"
target="_blank"
rel="noopener noreferrer"
>
<img src="assets/img/github-smol.png" />
</a>
<a class="social-icon" href="https://www.instagram.com/ubco_vgdc/" target="_blank" rel="noopener noreferrer">
<img src="assets/img/instagram-logo-smol.png" />
</a>
<a class="social-icon" href="https://www.twitch.tv/ubco_vgdc" target="_blank" rel="noopener noreferrer">
<img src="assets/img/twitch-logo-smol.png" />
</a>
</div>
</div>
</div>
<div class="divider"></div>
<h2 class="subtitle">Our Team</h2>
<div class="exec-grid">
{% for exec in site.data.execs %}
<div class="exec-box">
<img class="exec-img" src="{{ exec.img }}" />
<p class="exec-name">{{ exec.name }}</p>
<p class="exec-position">
<i>{{ exec.position }}</i>
</p>
</div>
{% endfor %}
</div>
</div>
</div>