Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/devcows/hugo-universal-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Gisbers <michael@gisbers.de>2021-08-04 16:55:35 +0300
committerGitHub <noreply@github.com>2021-08-04 16:55:35 +0300
commit965e6c27a31f735d4ca260877fed02ea62f0b7d3 (patch)
tree21298d39badc38f0308539e9b33629477432c0a7 /exampleSite/content/blog/creating-a-new-theme.md
parent0f9faf74727f63189901d93b98945c28b0e1d1df (diff)
Use authors taxonomy and list all posts on a draft user's page (#306)1.2.0
* add taxonomies to config.toml * change blog posts to use 'authors' instead of 'author'; add author 'Jane Doe' * draft for user page listing all user posts * change from using 'author' to 'authors' * remove space before comma for multiple authors * remove authors/list.html to get same look like tags/categories listing
Diffstat (limited to 'exampleSite/content/blog/creating-a-new-theme.md')
-rw-r--r--exampleSite/content/blog/creating-a-new-theme.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/exampleSite/content/blog/creating-a-new-theme.md b/exampleSite/content/blog/creating-a-new-theme.md
index 799a813..233b293 100644
--- a/exampleSite/content/blog/creating-a-new-theme.md
+++ b/exampleSite/content/blog/creating-a-new-theme.md
@@ -5,6 +5,7 @@ tags = ["theme"]
categories = ["starting"]
description = "This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content."
banner = "img/banners/banner-1.jpg"
+authors = ["Jane Doe"]
+++
## Introduction