From c492e677941df4ca0605b9f576e6589e06c3e27f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Thu, 19 Nov 2020 15:49:52 +0100 Subject: [PATCH] chore: created website baseline --- .eleventy.js | 10 ++++++++++ pages/_includes/layout.njk | 12 ++++++++++++ pages/css/main.css | 0 pages/index.njk | 31 +++++++++++++++++++++++++++++++ 4 files changed, 53 insertions(+) create mode 100644 .eleventy.js create mode 100644 pages/_includes/layout.njk create mode 100644 pages/css/main.css create mode 100644 pages/index.njk diff --git a/.eleventy.js b/.eleventy.js new file mode 100644 index 0000000..b5e9a4d --- /dev/null +++ b/.eleventy.js @@ -0,0 +1,10 @@ +module.exports = function(eleventyConfig) { + + eleventyConfig.addPassthroughCopy('page/css') + + return { + dir: { + input: "pages" + } + } +} \ No newline at end of file diff --git a/pages/_includes/layout.njk b/pages/_includes/layout.njk new file mode 100644 index 0000000..4475a34 --- /dev/null +++ b/pages/_includes/layout.njk @@ -0,0 +1,12 @@ + + + + + + {{ title }} + + + + {{ content | safe }} + + \ No newline at end of file diff --git a/pages/css/main.css b/pages/css/main.css new file mode 100644 index 0000000..e69de29 diff --git a/pages/index.njk b/pages/index.njk new file mode 100644 index 0000000..a688a0d --- /dev/null +++ b/pages/index.njk @@ -0,0 +1,31 @@ +--- +username: Laureηt +layout: layout.njk +--- + +
+ {{ username }} +
+ + +

whoami

+

Hi, my name's Laurent Fainsin, and I'm currently an L3 engineering student at ENSEEIHT in France. I study Computer Science and this is my personnal ePortfolio to showcase my work. Here is my resume if you are professionally interested.

+ +

./Contact

+You can email me at : + +You can reach me via : + + +

ePortfolio (SHS)

+ + + \ No newline at end of file