From 9caabe1c4d6a19d9a5effa7e5f89bf508ef337a0 Mon Sep 17 00:00:00 2001 From: Joe Hutchinson Date: Tue, 18 Dec 2018 14:28:04 -0500 Subject: [PATCH 1/4] Update README.md --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b938637..ee0b206 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ bgimg = "URL to the image used for the page background - optional" ### Creating content Make a new post by executing `hugo new post/postnamehere.md` in your shell. Open the new file, update the front matter, and start writing! Below you can find what the front matter should contain for a new post and what each of the parameters mean. -``` +```yaml title: "The title of your post" date: date the post was generated description: "Description of the post (displayed in the post's card)" @@ -52,6 +52,16 @@ Posts typically would have displayInMenu set to false so that the post is not a Adding an interesting description and a good image to each post is a great way to get the most value out of this theme. +### Further Customization +To change the heading and subtext at the top of list pages just add a \_index.md file in the folder that the list page is generated from. For example to change the heading at the top of the homepage, add an \_index.md file to the content folder with the following parameters. +```yaml +--- +title: "This is the main heading text in big letters" +date: the date +description: "This is the subtext above the main heading in small letters" +--- +``` + ## Helpful Links [Hugo Documentation](https://gohugo.io/documentation/) - Learn how to use Hugo and format content files From 767ab931c4f2eef4549a4a33729755bc6b948d82 Mon Sep 17 00:00:00 2001 From: Joe Hutchinson Date: Tue, 18 Dec 2018 14:29:05 -0500 Subject: [PATCH 2/4] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index ee0b206..2d703ea 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ bgimg = "URL to the image used for the page background - optional" ### Creating content Make a new post by executing `hugo new post/postnamehere.md` in your shell. Open the new file, update the front matter, and start writing! Below you can find what the front matter should contain for a new post and what each of the parameters mean. ```yaml +--- title: "The title of your post" date: date the post was generated description: "Description of the post (displayed in the post's card)" @@ -46,6 +47,7 @@ featuredImage: "URL to the page's featured image, used as the card image and the displayInMenu: whether you would like the post to show up in the navigation menu (true, false) displayInList: whether you would like the post to be listed on the home page and category pages (true, false) draft: if the page is a draft (true, false) +--- ``` Posts typically would have displayInMenu set to false so that the post is not a menu option, and displayInList set to true so it shows up on the homepage's list of posts and in category page lists. An About Me page or a Contact page, on the other hand, would want displayInMenu set to true and displayInList set to false. That will allow the About Me page or Contact page to be accessable from the menu but not displayed in the homepage's list of posts. From ac92a02a56dd712b78b1241cc05738bfd5fbf603 Mon Sep 17 00:00:00 2001 From: Joe Hutchinson Date: Tue, 18 Dec 2018 14:33:45 -0500 Subject: [PATCH 3/4] Update README.md to use absolute paths --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d703ea..bed4eb3 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Aether is a Hugo theme for blogs that emphasizes motion, depth, and material as - Looks good on any screen using responsive web design - Highlight.js integration provides beautiful syntax highlighting for most programming languages and file formats -![Aether Hugo theme screenshot](images/screenshot.png) +![Aether Hugo theme screenshot](https://raw.githubusercontent.com/josephhutch/aether/master/images/screenshot.png?_sm_au_=iVVVRRW7D405F0fN) ## Installation In your Hugo project's theme directory, clone the Aether repo. From 3f533162660a518cad59ad88f34d93fa4cd519d0 Mon Sep 17 00:00:00 2001 From: Joe Hutchinson Date: Tue, 18 Dec 2018 14:42:09 -0500 Subject: [PATCH 4/4] Update config.toml --- exampleSite/config.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index bea2679..64e89cf 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -1,7 +1,6 @@ -baseurl = "https://gohugo.io/" +baseurl = "http://example.org" title = "Hugo Themes - aether" -author = "Steve Francia" -copyright = "Copyright © 2008–2018, Steve Francia and the Hugo Authors; all rights reserved." +author = "Joe Hutchinson" canonifyurls = true paginate = 3 theme = "aether" @@ -9,4 +8,4 @@ theme = "aether" [params] brand = "aether" description = "aether Hugo theme for blogs" -bgimg = "/img/ignasi_pattern_s.png" \ No newline at end of file +bgimg = "/img/ignasi_pattern_s.png"