-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (49 loc) · 1.9 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
---
layout: default
styles: ["/css/bio.css"]
---
<!-- Welcome -->
<section id="welcome" class="main-content">
<div class="content-container">
<h1 class="bio-title">Welcome!</h1>
<div class="bio-container">
<div class="bio-face-col">
<img class="bio-face-img" src="/img/me-circle-border.png" alt="Me looking fly">
</div>
<div class="bio-content-col">
<p class="bio-text">
I'm a British B.Sc. Computer Science graduate with 1st-class
honours and a core member of
<a href="https://github.com/neovim/">the Neovim team</a>
who has enjoyed programming since childhood.
</p>
<p class="bio-text">
I've always been fascinated by the ability programming has
to turn ideas into something substantial; it's the closest
thing we have to magic!
</p>
<p class="bio-text">
A selection of things I've worked on can be found below
(with more on
<a href="https://github.com/seandewar?tab=repositories">
my GitHub profile</a>).
</p>
</div>
</div>
</div>
</section>
<!-- My Projects -->
<section id="projects" class="projects-content">
{%- for project in site.data.projects.main_projects -%}
{%- include projects/project_info.html project=project -%}
{%- endfor -%}
<div class="project-bg-container">
<div class="content-container">
<div class="misc-projects-container">
{%- for project in site.data.projects.misc_projects -%}
{%- include projects/misc_project_info.html project=project -%}
{%- endfor -%}
</div>
</div>
</div>
</section>