From 8df82947b74ed646459792c10c1b7f93c89bd146 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 6 May 2021 21:42:45 +0200 Subject: [PATCH] chore: fix capitalization for params in while clause (#108) BREAKING CHANGE: The minimal required Hugo version was bumped to 0.83.0 --- README.md | 2 +- assets/search-data.json | 2 +- exampleSite/content/_index.md | 2 +- theme.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0cc3fcd..6c92020 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Geekdoc [![Build Status](https://img.shields.io/drone/build/thegeeklab/hugo-geekdoc?logo=drone&server=https%3A%2F%2Fdrone.thegeeklab.de)](https://drone.thegeeklab.de/thegeeklab/hugo-geekdoc) -[![Hugo Version](https://img.shields.io/badge/hugo-0.65-blue.svg)](https://gohugo.io) +[![Hugo Version](https://img.shields.io/badge/hugo-0.83-blue.svg)](https://gohugo.io) [![GitHub release](https://img.shields.io/github/v/release/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/releases/latest) [![GitHub contributors](https://img.shields.io/github/contributors/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/graphs/contributors) [![License: MIT](https://img.shields.io/github/license/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/blob/main/LICENSE) diff --git a/assets/search-data.json b/assets/search-data.json index 7bc1955..38d358a 100644 --- a/assets/search-data.json +++ b/assets/search-data.json @@ -1,5 +1,5 @@ [ - {{ range $index, $page := (where .Site.Pages "Params.geekdocprotected" "ne" true) }} + {{ range $index, $page := (where .Site.Pages "Params.GeekdocProtected" "ne" true) }} {{ if ne $index 0 }},{{ end }} { "id": {{ $index }}, diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md index 05310b0..01f5c31 100644 --- a/exampleSite/content/_index.md +++ b/exampleSite/content/_index.md @@ -7,7 +7,7 @@ description: Geekdoc is a simple Hugo theme for documentations. It is intentiona [![Build Status](https://img.shields.io/drone/build/thegeeklab/hugo-geekdoc?logo=drone&server=https%3A%2F%2Fdrone.thegeeklab.de)](https://drone.thegeeklab.de/thegeeklab/hugo-geekdoc) -[![Hugo Version](https://img.shields.io/badge/hugo-0.65-blue.svg)](https://gohugo.io) +[![Hugo Version](https://img.shields.io/badge/hugo-0.83-blue.svg)](https://gohugo.io) [![GitHub release](https://img.shields.io/github/v/release/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/releases/latest) [![GitHub contributors](https://img.shields.io/github/contributors/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/graphs/contributors) [![License: MIT](https://img.shields.io/github/license/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/blob/main/LICENSE) diff --git a/theme.toml b/theme.toml index ea2b86f..87b062d 100644 --- a/theme.toml +++ b/theme.toml @@ -4,7 +4,7 @@ licenselink = "https://github.com/thegeeklab/hugo-geekdoc/blob/main/LICENSE" description = "Hugo theme made for documentation" homepage = "https://geekdocs.de/" tags = ["docs", "documentation", "responsive", "simple"] -min_version = "0.65.0" +min_version = "0.83.0" [author] name = "Robert Kaussow"