chore: created website baseline

This commit is contained in:
Laureηt 2020-11-19 15:49:52 +01:00
parent cadb2ed0a8
commit c492e67794
4 changed files with 53 additions and 0 deletions

10
.eleventy.js Normal file
View file

@ -0,0 +1,10 @@
module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy('page/css')
return {
dir: {
input: "pages"
}
}
}

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<link rel="stylesheet" href="/css/design.css">
</head>
<body>
{{ content | safe }}
</body>
</html>

0
pages/css/main.css Normal file
View file

31
pages/index.njk Normal file
View file

@ -0,0 +1,31 @@
---
username: Laureηt
layout: layout.njk
---
<header>
<span data-chaffle-onload="", data-chaffle="en", style="width: 170px; display: block;">{{ username }}</span>
</header>
<h1>whoami</h1>
<p>Hi, my name's Laurent Fainsin, and I'm currently an L3 engineering student at <a href="https://www.enseeiht.fr/">ENSEEIHT</a> in France. I study Computer Science and this is my personnal ePortfolio to showcase my work. Here is my <a href="/cv.pdf">resume</a> if you are professionally interested.</p>
<h1>./Contact</h1>
You can email me at :
<ul>
<li><a href="mailto:laurentfainsin@protonmail.com">laurentfainsin@protonmail.com</a>l</li>
<li><a href="mailto:laurent.fainsin@etu.inp-n7.fr">laurent.fainsin@etu.inp-n7.fr</a>l</li>
</ul>
You can reach me via :
<ul>
<li><a href="https://matrix.to/#/@fainsil:inpt.fr">Matrix.to</a>l</li>
<li><a href="https://www.linkedin.com/in/laurent-fainsin/">LinkedIn</a>l</li>
</ul>
<h1>ePortfolio (SHS)</h1>
<footer>
todo
</footer>