From 886dff0f8fbde5da3c49f6a20e4931766670d97c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Ord=C3=A1s?= Date: Mon, 26 Jul 2021 18:54:59 +0200 Subject: [PATCH] Fix GitHub pages theme config (#5450) * Render meaningful repo files as pages In README.md there are a link to CONTRIBUTING.md that doesn't work as github pages so configure to include some of this meaningful files present in repo. * Enable relative link collections Referenced Doc: - https://github.com/benbalter/jekyll-relative-links#processing-collections - https://github.com/nicolas-van/easy-markdown-to-github-pages#create-the-_configyml-file --- _config.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/_config.yml b/_config.yml index 03167a7d..c7db8b17 100644 --- a/_config.yml +++ b/_config.yml @@ -1,3 +1,12 @@ theme: jekyll-theme-minimal plugins: - jemoji + - jekyll-relative-links +relative_links: + enabled: true + collections: true +include: + - CONTRIBUTING.md + - LICENSE.md + - CODE_OF_CONDUCT.md +