-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (49 loc) · 2.01 KB
/
index.html
File metadata and controls
53 lines (49 loc) · 2.01 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="robots" content="noindex">
<title>Eric Daigle</title>
<meta name="author" content="Eric Daigle">
<meta name="description" content="Portfolio website.">
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header>
<h1>Eric Daigle</h1>
<nav>
<ul>
<li><a href="CV.pdf">CV</a></li>
<li><a href="https://github.com/edaigle/">GitHub</a></li>
<li class="tooltip">Email
<span class="tooltip-text">eric.daigle@zaclys.net</span>
</li>
</ul>
</nav>
</header>
<section class="projects-main">
<h3 id="intro">I'm Eric, a computer science student at UBC in Vancouver, Canada. Here are a few things I've worked on:</h3>
<section class="project">
<img class="project-logo" src="linux.svg">
<div class="project-body">
<h3><a href="https://gitlab.gnome.org/edaigle">GNOME Desktop Environment</a></h3>
<p>Dozens of accepted merge requests, fixing bugs and implementing new features across several GNOME apps including Nautilus, Control Center, and Calendar. Mostly working in C, with some contributions using Python and Vala.</p>
</div>
</section>
<section class="project">
<img id="favicon" class="project-logo" src="money.png">
<div class="project-body">
<h3><a href="https://github.com/edaigle/stocks-for-linux/">Stocks for Linux</a></h3>
<p>A stock price tracker for Linux, written in C using GLib, GTK+, and cJSON. Quote data is sourced from the Finnhub REST API.</p>
</div>
</section>
<section class="project">
<img id="favicon" class="project-logo" src="favicon.png">
<div class="project-body">
<h3><a href="#">ericdaigle.ca</a></h3>
<p>My personal portfolio website, designed in HTML and CSS.</p>
</div>
</section>
</body>
</html>