A theme for Hugo based on VMware Clarity
To add, remove or reorganize top menu links, edit this yaml file
Check the config.toml
file
[params]
...
blogDir = "blog_directory"
...
To make an image inline, append :inline
to its alt text.
<!-- some image without alt text -->
![:inline](someImageUrl)
<!-- some image with alt text -->
![some alt text:inline](someOtherImageUrl)
To make an image inline, append :left
to its alt text.
<!-- some image without alt text -->
![:left](someImageUrl)
<!-- some image with alt text -->
![some alt text:left](someOtherImageUrl)
They ought to of a height: width ratio of 2:1
. They will be specified using a frontmatter variable as follows
...
thumbnail: "/images/2020-04/capv-overview/featured.jpg"
...