From ae5eb4a85f9cafcb6e9f09e6f6f97af647eb9c13 Mon Sep 17 00:00:00 2001 From: kPsarakis Date: Wed, 16 Nov 2022 22:29:57 +0100 Subject: [PATCH 1/3] update .gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 6459cf7..0e96dc7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ _site *.DS_store .jekyll-cache* +Gemfile.lock +.idea \ No newline at end of file From 3dbc5c087bd65f5d8d499fc41272d2e203789bc2 Mon Sep 17 00:00:00 2001 From: kPsarakis Date: Wed, 16 Nov 2022 22:30:17 +0100 Subject: [PATCH 2/3] add webrick to Gemfile for local development --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index 1f2c6a8..1ea8cbc 100644 --- a/Gemfile +++ b/Gemfile @@ -2,3 +2,5 @@ source "https://rubygems.org" gem 'github-pages' +gem "webrick" + From 249183d176f6523789d0c41a4348e1a4025f4356 Mon Sep 17 00:00:00 2001 From: kPsarakis Date: Wed, 16 Nov 2022 22:30:54 +0100 Subject: [PATCH 3/3] add Recipes header and a basic recipes page with hyperlinks --- _layouts/default.html | 3 +++ recipes/index.md | 25 +++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 recipes/index.md diff --git a/_layouts/default.html b/_layouts/default.html index efe6dcc..b91a35d 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -65,6 +65,9 @@ + diff --git a/recipes/index.md b/recipes/index.md new file mode 100644 index 0000000..1a872c8 --- /dev/null +++ b/recipes/index.md @@ -0,0 +1,25 @@ +--- +layout: default +title: "Asterios Katsifodimos | Assistant Professor, TU Delft" +recipes: + - {title: Meatballs with Red Sauce, url: meatballs-red-sauce.html} +--- +
+
+
Recipes
+
+ +{% for rcp in page.recipes %} +  +
+
+ {{ rcp.title }} +
+
+{% endif %} +{% endfor %} + +