From 9b05f705f3ed9c8363336f62c41297ff8e9d380c Mon Sep 17 00:00:00 2001 From: cmoulliard Date: Fri, 20 Sep 2024 15:03:48 +0200 Subject: [PATCH] Initial upload of the code, config Signed-off-by: cmoulliard --- Gemfile | 3 +++ Gemfile.lock | 4 ++++ _config.yml | 18 +++++++++++++++--- index.md | 2 ++ 4 files changed, 24 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 157e918..e6f1769 100644 --- a/Gemfile +++ b/Gemfile @@ -5,3 +5,6 @@ gem "jekyll", "~> 4.3.4" # installed by `gem jekyll` gem "just-the-docs", "0.10.0" # pinned to the current release # gem "just-the-docs" # always download the latest release + +gem "jekyll-seo-tag" +gem "jekyll-sitemap" \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index dd64b4d..749db34 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -44,6 +44,8 @@ GEM sass-embedded (~> 1.54) jekyll-seo-tag (2.8.0) jekyll (>= 3.8, < 5.0) + jekyll-sitemap (1.4.0) + jekyll (>= 3.7, < 5.0) jekyll-watch (2.2.1) listen (~> 3.0) just-the-docs (0.10.0) @@ -85,6 +87,8 @@ PLATFORMS DEPENDENCIES jekyll (~> 4.3.4) + jekyll-seo-tag + jekyll-sitemap just-the-docs (= 0.10.0) BUNDLED WITH diff --git a/_config.yml b/_config.yml index faa6eaa..19edbb4 100644 --- a/_config.yml +++ b/_config.yml @@ -1,8 +1,20 @@ -title: Just the Docs Template -description: A starter template for a Jeykll site using the Just the Docs theme! +title: Pipeline generator +description: A tool able to generate the YAML resource of a job theme: just-the-docs - url: https://just-the-docs.github.io +permalink: pretty + +defaults: + - scope: + path: "docs" # an empty string here means all files in the project + type: "pages" + values: + layout: "default" + aux_links: Template Repository: https://github.com/just-the-docs/just-the-docs-template + +plugins: + - jekyll-seo-tag + - jekyll-sitemap diff --git a/index.md b/index.md index ca0c545..daa7d67 100644 --- a/index.md +++ b/index.md @@ -1,6 +1,8 @@ --- title: Home layout: home +nav_order: 1 +permalink: / --- This is a *bare-minimum* template to create a Jekyll site that uses the [Just the Docs] theme. You can easily set the created site to be published on [GitHub Pages] – the [README] file explains how to do that, along with other details.