Edit default and first post. Add working tag functionality

This commit is contained in:
Isaac Shoebottom 2022-10-08 14:52:35 -03:00
parent 407cda8335
commit 1c25190dd9
3 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,7 @@
--- ---
title: "{{replace (substr .Name 11) "-" " " | title }}" title: "{{replace (substr .Name 11) "-" " " | title }}"
date: {{ .Date }} date: {{ .Date }}
tags: ['']
draft: true draft: true
--- ---

View File

@ -12,3 +12,6 @@ theme = 'm10c'
icon = "github" icon = "github"
name = "My Github" name = "My Github"
url = "https://github.com/IsaacShoebottom" url = "https://github.com/IsaacShoebottom"
[taxonomies]
tag = "tags"

View File

@ -1,9 +1,10 @@
--- ---
title: "Learning Hugo" title: "Learning Hugo"
date: 2022-10-08T00:33:29-03:00 date: 2022-10-08T00:33:29-03:00
tags: ['hugo', webdev]
draft: false draft: false
--- ---
# Hugo Test # On using hugo
Hello World! Hugo provides a very simple file structure for generating and using themes with static sites. More content to come.