From 482bab994816507a920b0067b37975158899dfda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Mon, 29 Nov 2021 23:21:45 +0100 Subject: [PATCH] feat(index): added some projects (~draft) --- src/index.md | 23 ++++++++++++++++++++++- src/scss/resume.scss | 29 ----------------------------- src/scss/style.scss | 29 +++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+), 30 deletions(-) diff --git a/src/index.md b/src/index.md index 173491f..b3f6ff1 100755 --- a/src/index.md +++ b/src/index.md @@ -2,6 +2,12 @@ layout: layout.njk --- +{% block head %} + + + +{% endblock head %} + # whoami {data-chaffle="en"} Hi, my name's Laurent Fainsin, and I'm currently an M1 engineering student at [ENSEEIHT](https://www.enseeiht.fr/) in France. I study [Computer Science](https://www.enseeiht.fr/fr/formation/formation-ingenieur/departement-sn/programme-sn.html) and this is my personnal website to showcase my work. Here is my [resume]({{ '/resume/en' | url }}) if you are professionally interested. @@ -10,7 +16,22 @@ Hi, my name's Laurent Fainsin, and I'm currently an M1 engineering student at [E # ls projects {data-chaffle="en"} -Nothing worth showing for now. Come back later. +{% for project in resumes.en.personnal_projects.list %} + +
+

{{ project.title }}

+

{{ project.description }}

+ +
+ +{% endfor %} --- diff --git a/src/scss/resume.scss b/src/scss/resume.scss index d718ecd..64c7b28 100755 --- a/src/scss/resume.scss +++ b/src/scss/resume.scss @@ -74,35 +74,6 @@ h1>small { font-size: 0.45em; } -section { - padding-left: 1em; - padding-bottom: 1em; - - p { - padding-left: 1em; - margin: 0; - margin-bottom: 0.2em; - } - - h3 { - margin-bottom: 0.3em; - } - - ul { - padding-left: 2em; - padding-bottom: 1em; - } - - .project-links { - padding-left: 1em; - - a { - padding-left: 0.3em; - text-decoration: none; - } - } -} - @media print { @page { size: auto; diff --git a/src/scss/style.scss b/src/scss/style.scss index 7a502ff..9749630 100755 --- a/src/scss/style.scss +++ b/src/scss/style.scss @@ -92,6 +92,35 @@ video { margin: 0 auto; } +section { + padding-left: 1em; + padding-bottom: 1em; + + p { + padding-left: 1em; + margin: 0; + margin-bottom: 0.2em; + } + + h3 { + margin-bottom: 0.3em; + } + + ul { + padding-left: 2em; + padding-bottom: 1em; + } + + .project-links { + padding-left: 1em; + + a { + padding-left: 0.3em; + text-decoration: none; + } + } +} + @media only screen and (max-width: 64rem) { body { width: calc(100% - 4rem);