diff --git a/archetypes/post.md b/archetypes/posts.md similarity index 100% rename from archetypes/post.md rename to archetypes/posts.md diff --git a/exampleSite/content/post/aether-theme/index.md b/exampleSite/content/post/aether-theme/index.md index 9c6fd20..966ffb2 100644 --- a/exampleSite/content/post/aether-theme/index.md +++ b/exampleSite/content/post/aether-theme/index.md @@ -45,14 +45,14 @@ homeimg = "url to the image used for the home button - optional" bgimg = "url to the image used for the background - optional" ``` -The `title` parameter is used for each page title, the title that seach engines display in search results. If you would like the title shown in the top left of the page to be different from the page title, use the `brand` parameter. For instance, the title parameter for my site is `Joe Hutchinson` but the brand parameter is set to `joehutch`. +The `title` parameter is used for each page title, the title that search engines display in search results. If you would like the title shown in the top left of the page to be different from the page title, use the `brand` parameter. For instance, the title parameter for my site is `Joe Hutchinson` but the brand parameter is set to `joehutch`. The `homeimg` and `bgimg` parameters give you the ability to customize the look of your site further. The homeimg parameter is the image used for the home button at the bottom of every page. Since the text used on the home button is white, a darker background image is preferred. If the homeimg parameter is not specified, a fallback image is used. Similarly, the bgimg parameter is used for the background of each webpage. Aether is designed to look best with a subtle tiling image for the background. If no background image is specified, the background will be a solid gray color. That is the only configuration required at the site level! You can now begin writing content for your site. ### Creating content -Make a new blog post by executing `hugo new post/postnamehere.md` in your shell. At the top of the new markdown file, is what's called the front matter. The front matter is the page's metadata that determines how Hugo and aether generate the HTML for your post. Below you can find what the front matter should contain for a new post and what each of the parameters mean. +Make a new blog post by executing `hugo new posts/postnamehere/index.md` in your shell. At the top of the new markdown file, is what's called the front matter. The front matter is the page's metadata that determines how Hugo and aether generate the HTML for your post. Below you can find what the front matter should contain for a new post and what each of the parameters mean. ```properties --- @@ -77,6 +77,8 @@ The `dropCap` parameter is used to determine if the first letter of a post shoul Add an interesting description and a good image to each post to get the most value from this theme. +Aether takes advantage of [page bundles](https://gohugo.io/content-management/page-bundles/) to optimize your images for your site. This may require you to update the way your content is structured, also see [content organization](https://gohugo.io/content-management/organization/). Use the `image` and `smallimg` shortcodes to take full advantage of image optimization. + Posts are written in markdown and LaTeX (for math symbols and equations). You can find tons of information on how to format your posts with markdown and LaTeX on the web. ### Further Customization