-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.88 KB
/
Copy pathindex.html
File metadata and controls
52 lines (52 loc) · 1.88 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
<!doctype html>
<html>
<head>
<meta charset="utf8" />
<title>Ilias Trichopoulos CV</title>
<link href="https://fonts.googleapis.com/css?family=Inter&display=swap" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.10.2/css/solid.css"
integrity="sha384-qPldrzmea0i8jhonuql0da/kQWeaXdQl+krGXcTQUdRUGHcXBfSrBbZLbyMcCWcF"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.10.2/css/brands.css"
integrity="sha384-qVnmyLTtnGPGEN3HDG2MCEOXWH1Yk/i70lKRuV+gMCDQg+jblQlFGPf1mejWUyYG"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.10.2/css/fontawesome.css"
integrity="sha384-hM7EQerc09E4O3zhtvF2iqcB4ZkEu9xkLQndhXdGGCEJ/sB4JK54SuKGmIC35UTf"
crossorigin="anonymous"
/>
</head>
<body>
{% include 'src/components/github_corner/index.njk' %}
<main>
<article class="page">
{% include 'src/sections/header.njk' %}
<div>
<div class="page-sections">
<div class="top-section">{% include 'src/sections/about.njk' %}</div>
<div class="columns">
<div class="left-side-bar">
{% include 'src/sections/skills.njk' %} {% include 'src/sections/proud.njk' %} {%
include 'src/sections/education.njk' %} {% include 'src/sections/languages.njk' %}
</div>
<div class="right-main-content">{% include 'src/sections/experience.njk' %}</div>
</div>
</div>
</div>
{% include 'src/sections/footer/index.njk' %}
</article>
</main>
<script type="module" src="/src/main.js"></script>
</body>
</html>