chore: created website baseline
This commit is contained in:
parent
cadb2ed0a8
commit
c492e67794
10
.eleventy.js
Normal file
10
.eleventy.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
module.exports = function(eleventyConfig) {
|
||||
|
||||
eleventyConfig.addPassthroughCopy('page/css')
|
||||
|
||||
return {
|
||||
dir: {
|
||||
input: "pages"
|
||||
}
|
||||
}
|
||||
}
|
12
pages/_includes/layout.njk
Normal file
12
pages/_includes/layout.njk
Normal 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
0
pages/css/main.css
Normal file
31
pages/index.njk
Normal file
31
pages/index.njk
Normal 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>
|
Reference in a new issue