From 47196bbac1e8782da54d0947dfb7b251cdf28943 Mon Sep 17 00:00:00 2001 From: Dario Quintero Date: Tue, 8 Aug 2023 10:43:11 +0100 Subject: [PATCH] FEAT: Minimal complete --- _config.yml | 6 ++-- _pages/cv.md | 4 +-- _pages/projects.md | 2 +- _projects/1_project.md | 81 ------------------------------------------ 4 files changed, 6 insertions(+), 87 deletions(-) delete mode 100644 _projects/1_project.md diff --git a/_config.yml b/_config.yml index 010e97dd9e23..94ec326a3dda 100644 --- a/_config.yml +++ b/_config.yml @@ -2,13 +2,13 @@ # Site settings # ----------------------------------------------------------------------------- -title: Hi! My name is Dario # the website title (if blank, full name will be used instead) +title: # the website title (if blank, full name will be used instead) first_name: Dario middle_name: Antonio last_name: Quintero Dominguez email: darioaquintero [ at ] gmail [ dot ] com description: > # the ">" symbol means to ignore newlines until "footer_text:" - A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design. + I am Darío Quintero Domínguez. footer_text: keywords: jekyll, jekyll-theme, academic-website, portfolio-website # add your own keywords or leave empty @@ -121,7 +121,7 @@ bing_site_verification: # out your bing-site-verification ID (Bing Webmaster) # ----------------------------------------------------------------------------- blog_name: I am thinking about # blog_name will be displayed in your blog page -blog_nav_title: Blog # your blog must have a title for it to be displayed in the nav bar +blog_nav_title: # your blog must have a title for it to be displayed in the nav bar blog_description: permalink: /blog/:year/:title/ diff --git a/_pages/cv.md b/_pages/cv.md index 20d69859bb71..0a70967e2ebc 100644 --- a/_pages/cv.md +++ b/_pages/cv.md @@ -4,6 +4,6 @@ permalink: /cv/ title: Resume nav: true nav_order: 4 -cv_pdf: example_pdf.pdf -description: This is a description of the page. You can modify it in 'pages/_cv.md'. You can also change or remove the top pdf download button. +cv_pdf: +description: --- diff --git a/_pages/projects.md b/_pages/projects.md index 6a9b841a368c..d4d4c24679bf 100644 --- a/_pages/projects.md +++ b/_pages/projects.md @@ -1,6 +1,6 @@ --- layout: page -title: Projects +title: permalink: /projects/ description: A growing collection of your cool projects. nav: true diff --git a/_projects/1_project.md b/_projects/1_project.md deleted file mode 100644 index f1c8b80b032e..000000000000 --- a/_projects/1_project.md +++ /dev/null @@ -1,81 +0,0 @@ ---- -layout: page -title: project 1 -description: a project with a background image -img: assets/img/12.jpg -importance: 1 -category: work -related_publications: einstein1956investigations, einstein1950meaning ---- - -Every project has a beautiful feature showcase page. -It's easy to include images in a flexible 3-column grid format. -Make your photos 1/3, 2/3, or full width. - -To give your project a background in the portfolio page, just add the img tag to the front matter like so: - - --- - layout: page - title: project - description: a project with a background image - img: /assets/img/12.jpg - --- - -
-
- {% include figure.html path="assets/img/1.jpg" title="example image" class="img-fluid rounded z-depth-1" %} -
-
- {% include figure.html path="assets/img/3.jpg" title="example image" class="img-fluid rounded z-depth-1" %} -
-
- {% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %} -
-
-
- Caption photos easily. On the left, a road goes through a tunnel. Middle, leaves artistically fall in a hipster photoshoot. Right, in another hipster photoshoot, a lumberjack grasps a handful of pine needles. -
-
-
- {% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %} -
-
-
- This image can also have a caption. It's like magic. -
- -You can also put regular text between your rows of images. -Say you wanted to write a little bit about your project before you posted the rest of the images. -You describe how you toiled, sweated, *bled* for your project, and then... you reveal its glory in the next row of images. - - -
-
- {% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %} -
-
- {% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %} -
-
-
- You can also have artistically styled 2/3 + 1/3 images, like these. -
- - -The code is simple. -Just wrap your images with `
` and place them inside `
` (read more about the Bootstrap Grid system). -To make images responsive, add `img-fluid` class to each; for rounded corners and shadows use `rounded` and `z-depth-1` classes. -Here's the code for the last row of images above: - -{% raw %} -```html -
-
- {% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %} -
-
- {% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %} -
-
-``` -{% endraw %}