From b3c79a65cb234c621d9dd54dcad49b759e9315ad Mon Sep 17 00:00:00 2001 From: Bud Parr Date: Sun, 16 Apr 2017 10:58:53 -0400 Subject: [PATCH 1/4] bring up readme --- README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c3d39e1..9e595f2 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Features Also includes examples of Hugo Features or Functions: - Pagination (internal template) +- Taxonomies - Archetypes - Custom shortcode - Hugo built-in menu @@ -53,7 +54,7 @@ For more information read the official [setup guide](//gohugo.io/overview/instal ## Getting started -After installing the Agency Theme successfully it requires a just a few more steps to get your site running. +After installing the theme successfully it requires a just a few more steps to get your site running. ### The config file @@ -77,7 +78,6 @@ This theme includes a shortcode for a contact form that you can add to any page ``` {{< form-contact action="http://formspree.io/your@email.com" >}} - ``` @@ -85,20 +85,18 @@ This theme includes a shortcode for a contact form that you can add to any page In order to see your site in action, run Hugo's built-in local server. - $ hugo server +`$ hugo server` Now enter [`localhost:1313`](http://localhost:1313/) in the address bar of your browser. ## Contributing -Did you found a bug or got an idea for a new feature? Feel free to use the [issue tracker](https://github.com/budparr/gohugo-theme-ananke/issues) to let me know. +If you find a bug or have an idea for a feature, feel free to use the [issue tracker](https://github.com/budparr/gohugo-theme-ananke/issues) to let me know. TODO: -- ADD INSTRUCTIONS -- fix hard-coded link to section https://github.com/budparr/gohugo-default-theme/blob/master/layouts/index.html#L32 -- move SRC files to separate branch +- fix hard-coded link to [section](https://github.com/budparr/gohugo-theme-ananke/blob/master/layouts/index.html#L32) From 1871755a891fb3f846adf25844ed98727f2456af Mon Sep 17 00:00:00 2001 From: Bud Parr Date: Mon, 17 Apr 2017 09:05:36 -0400 Subject: [PATCH 2/4] add Hugo RSS Link --- layouts/_default/baseof.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 337ac7b..15dbd9b 100755 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -19,6 +19,11 @@ + {{ if .RSSLink }} + + + {{ end }} + {{/* NOTE: These Hugo Internal Templates can be found starting at https://github.com/spf13/hugo/blob/master/tpl/tplimpl/template_embedded.go#L158 */}} {{- template "_internal/opengraph.html" . -}} {{- template "_internal/google_news.html" . -}} From 7f7c87a567a475f346fc94721e74d8b4b38c36c9 Mon Sep 17 00:00:00 2001 From: Bud Parr Date: Mon, 17 Apr 2017 09:05:48 -0400 Subject: [PATCH 3/4] fix aria in form --- layouts/shortcodes/form-contact.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/layouts/shortcodes/form-contact.html b/layouts/shortcodes/form-contact.html index 3067166..dc30d59 100644 --- a/layouts/shortcodes/form-contact.html +++ b/layouts/shortcodes/form-contact.html @@ -3,17 +3,17 @@
- - + + - -
+ +
Must be a valid email address.
- + From a214fec63731b012bec5d0d65938afc3b501124e Mon Sep 17 00:00:00 2001 From: Bud Parr Date: Mon, 17 Apr 2017 09:05:59 -0400 Subject: [PATCH 4/4] add mention of RSS in readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9e595f2..25b8e9d 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Features - Contact form - Custom Robots.txt (changes values based on environment) - Internal templates for meta data and google analytics +- RSS Discovery Also includes examples of Hugo Features or Functions: