mirror of
https://github.com/jbowdre/virtuallypotato.git
synced 2024-11-21 22:42:19 +00:00
tweak posts archetype
This commit is contained in:
parent
1d717882ab
commit
60f4dceae5
1 changed files with 3 additions and 5 deletions
|
@ -1,20 +1,18 @@
|
||||||
---
|
---
|
||||||
title: "{{ replace .Name "-" " " | title }}" # Title of the blog post.
|
title: "{{ replace .Name "-" " " | title }}" # Title of the blog post.
|
||||||
date: {{ .Date }} # Date of post creation.
|
date: {{ .Date }} # Date of post creation.
|
||||||
|
# lastmod: {{ .Date }} # Date when last modified
|
||||||
description: "WHEREIN I explore creating posts with a Hugo Archetype" # Description used for search engine.
|
description: "WHEREIN I explore creating posts with a Hugo Archetype" # Description used for search engine.
|
||||||
featured: false # Sets if post is a featured post, making appear on the home page side bar.
|
featured: false # Sets if post is a featured post, making appear on the home page side bar.
|
||||||
draft: true # Sets whether to render this page. Draft of true will not be rendered.
|
draft: true # Sets whether to render this page. Draft of true will not be rendered.
|
||||||
toc: true # Controls if a table of contents should be generated for first-level links automatically.
|
toc: true # Controls if a table of contents should be generated for first-level links automatically.
|
||||||
# menu: main
|
# menu: main
|
||||||
usePageBundles: false # Set to true to group assets like images in the same folder as this post.
|
|
||||||
# featureImage: "/images/posts-2021/12/file.png" # Sets featured image on blog post.
|
# featureImage: "/images/posts-2021/12/file.png" # Sets featured image on blog post.
|
||||||
# featureImageAlt: 'Description of image' # Alternative text for featured image.
|
# featureImageAlt: 'Description of image' # Alternative text for featured image.
|
||||||
# featureImageCap: 'This is the featured image.' # Caption (optional).
|
# featureImageCap: 'This is the featured image.' # Caption (optional).
|
||||||
thumbnail: "/images/posts-2021/12/thumbnail.png" # Sets thumbnail image appearing inside card on homepage.
|
# thumbnail: "/images/posts-2021/12/thumbnail.png" # Sets thumbnail image appearing inside card on homepage.
|
||||||
# shareImage: "/images/path/share.png" # Designate a separate image for social media sharing.
|
# shareImage: "/images/path/share.png" # Designate a separate image for social media sharing.
|
||||||
codeMaxLines: 10 # Override global value for how many lines within a code block before auto-collapsing.
|
|
||||||
codeLineNumbers: false # Override global value for showing of line numbers within code block.
|
codeLineNumbers: false # Override global value for showing of line numbers within code block.
|
||||||
figurePositionShow: true # Override global value for showing the figure label.
|
|
||||||
series:
|
series:
|
||||||
- vra8
|
- vra8
|
||||||
- projects
|
- projects
|
||||||
|
@ -24,7 +22,7 @@ tags:
|
||||||
- vmware
|
- vmware
|
||||||
- linux
|
- linux
|
||||||
- chromeos
|
- chromeos
|
||||||
# comment: false # Disable comment if false.
|
comment: true # Disable comment if false.
|
||||||
---
|
---
|
||||||
|
|
||||||
**Insert Lead paragraph here.**
|
**Insert Lead paragraph here.**
|
||||||
|
|
Loading…
Reference in a new issue