From e0887fab46194780156a802efe9cc9805ea2fa0d Mon Sep 17 00:00:00 2001 From: Rob Nugen Date: Wed, 12 Jun 2019 07:53:58 +0900 Subject: Use passive verb form of fetch in README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5043892..b44c19e 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ The following paragraphs detail the required data for each of the sections. ### HOME: Set the homepage header -The content of the top section of the homepage is fetch from the "home" data file. +The content of the top section of the homepage is fetched from the "home" data file. The different parameters that can be used are: - "title": The title for the website. Typically your name or company name. @@ -124,7 +124,7 @@ All the parameters are optional - if not defined, it will not be added to the pa ### ABOUT: Introduce yourself -The content of the "ABOUT" section of the homepage is fetch from the "about" data file. +The content of the "ABOUT" section of the homepage is fetched from the "about" data file. The different parameters that can be used are: - "title": The title of the section. Typically "ABOUT" would be used. @@ -137,7 +137,7 @@ All the parameters are optional - if not defined, it will not be added to the pa ### SERVICES: Add your services -The content of the "SERVICES" section of the homepage is fetch from the "services" data file. +The content of the "SERVICES" section of the homepage is fetched from the "services" data file. The different parameters that can be used are: - "title": The title of the section. Typically "SERVICES" would be used. @@ -156,7 +156,7 @@ The "services" list parameter must exist and contain at least one element. ### SKILLS: Show your skills -The content of the "SKILLS" section of the homepage is fetch from the "skills" data file. +The content of the "SKILLS" section of the homepage is fetched from the "skills" data file. The different parameters that can be used are: - "title": The title of the section. Typically "SKILLS" would be used. @@ -215,7 +215,7 @@ There can be more than one main projects sections. Different categories could fo ### CONTACT: Add contact information -The content of the "CONTACT" section of the homepage is fetch from the "contact" data file. +The content of the "CONTACT" section of the homepage is fetched from the "contact" data file. The different parameters that can be used are: - "title": The title of the section. Typically "CONTACT" would be used. -- cgit v1.2.3 From 35f6660d43780998dc33711fa064fce618fef596 Mon Sep 17 00:00:00 2001 From: Rob Nugen Date: Wed, 12 Jun 2019 07:54:51 +0900 Subject: Fix spelling of taxonomies in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b44c19e..99d95b6 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Noteworthy features of this Hugo theme are: - Dynamic generation of pages based on data content - Easy site navigation via header navigation bar - Possibility to display siblings, children posts and children lists independently for each page, with associated orders -- Easy content navigation via sidebar: hierarchy (siblings and parents), and taxinomies (tags and categories) +- Easy content navigation via sidebar: hierarchy (siblings and parents), and taxonomies (tags and categories) - Customisable CSS to override default values (such as main theme colours, fonts, etc.) - Easy copyright image labelling per image or per project - 404 page -- cgit v1.2.3 From a2a1f877d000f59187f66ac346ae7ded8e271f36 Mon Sep 17 00:00:00 2001 From: Rob Nugen Date: Wed, 12 Jun 2019 10:16:25 +0900 Subject: Use the global hugo function. fix error: Page's .Hugo is deprecated and will be removed in a future release. --- layouts/partials/head.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/head.html b/layouts/partials/head.html index c656489..2532afa 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -15,7 +15,7 @@ -{{ .Hugo.Generator }} +{{ hugo.Generator }} {{ "" | safeHTML }} -- cgit v1.2.3