From 7036f0afa58bee5cbc9db06b0e6d5ee0946d201d Mon Sep 17 00:00:00 2001 From: Jacek Lebioda Date: Mon, 11 May 2020 11:23:26 +0200 Subject: [PATCH 1/3] feat: add og:image to the pages --- _config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_config.yml b/_config.yml index b46d209..5005d48 100644 --- a/_config.yml +++ b/_config.yml @@ -71,6 +71,11 @@ defaults: values: include_link: true searchable: 1.0 + - scope: # adding og:image to the SEO's metadata + path: "" + values: + image: /assets/favicon/apple-touch-icon.png + # Exclude from processing. (no need to touch these) -- GitLab From 385ccbace09d8e9734d2c9f99660c065277c020b Mon Sep 17 00:00:00 2001 From: Jacek Lebioda Date: Mon, 11 May 2020 11:26:33 +0200 Subject: [PATCH 2/3] feat: upgrade baseimage in CI script --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7ab9b53..2683492 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ # In case something goes horribly wrong, you can fall back to `image: ruby:2.5` -image: git-r3lab.uni.lu:4567/r3/docker/jekyll-lcsb:1.4 +image: git-r3lab.uni.lu:4567/r3/docker/jekyll-lcsb:1.5 stages: - build -- GitLab From 99247e24a3d17e0256009b86649b5bb568719472 Mon Sep 17 00:00:00 2001 From: laurentheirendt Date: Wed, 20 May 2020 10:55:31 +0200 Subject: [PATCH 3/3] preparations for policies --- .ci/generateIndex.py | 2 +- .gitignore | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci/generateIndex.py b/.ci/generateIndex.py index 968f2b0..01890c0 100644 --- a/.ci/generateIndex.py +++ b/.ci/generateIndex.py @@ -60,7 +60,7 @@ localroot = os.getcwd() # generate the index properly speaking -cardDirs = ["internal", "external"] +cardDirs = ["internal", "external", "policies"] sections = [] # determine first the directories diff --git a/.gitignore b/.gitignore index 320e29c..1085de4 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,4 @@ package.json ./theme/package.json __pycache__/ contribute.egg-info/ +policies \ No newline at end of file -- GitLab