-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
41 lines (40 loc) · 1.24 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
---
layout: default
title: About
nav-url: /about
stylesheet: /assets/css/about.css
---
<div id="aboutContainer">
<!-- TOP CONTAINER -->
<div>
<img id="aboutImage" src="/images/me.jpg" alt="picture_of_me.jpg">
</div>
<div id="aboutMe">
<div class="aboutHeader">
Who Am I?
</div>
I am a Computer Science Engineering student at The University of Michigan,
set to graduate May 2020.
<br /><br />
I am also the head of <i>WolverineSoft Studio</i>, an initiative I spear-headed
at the University to facilitate long-term, 15-30 person game projects in the
hopes of strengthening the game development program and giving students more robust
experience working with multidisciplinary teams.
<br /><br />
The success of the team is my number one passion. Whether it's
through removing barriers to their work, promoting clear communication, or
just helping everyone keep track of their tasks, I am most engaged when I
feel that I'm making a positive difference in my team's ability to work on
what is most important.
</div>
{% for entry in site.data.about %}
<div class="aboutSubSection">
<div class="aboutHeader">
{{ entry.header }}
</div>
<div class="aboutContent">
{{ entry.content }}
</div>
</div>
{% endfor %}
</div>