blob: aabe2b8b6f65f015356123c9423777e0174fbe6f (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Joris Guyonvarch">
<meta name="description" content="I’m a developer using functional programming. View my resume and projects.">
<title>Joris Guyonvarch</title>
<link rel="stylesheet" href="/style.css" />
<link rel="icon" href="/assets/icon.png" />
</head>
<body>
<header class="Header__Container">
<a href="/" class="Header__Link $if(isResume)$Header__LinkCurrent$endif$">
<div class="Header__Icon">$partial("templates/icons/user.svg")$</div>
CV
</a>
<a href="/projects.html" class="Header__Link $if(isProjects)$Header__LinkCurrent$endif$">
<div class="Header__Icon">$partial("templates/icons/code.svg")$</div>
Projects
</a>
</header>
<main class="Main__Container">
$body$
</main>
</body>
</html>
|