From 2e0524048a475f705e0fa985493fc6f7a1c0b048 Mon Sep 17 00:00:00 2001 From: Justin Date: Fri, 8 Feb 2019 15:29:07 -0500 Subject: [PATCH] inital commit --- .gitignore | 1 + .gitmodules | 3 +++ archetypes/default.md | 6 ++++++ config.toml | 6 ++++++ content/_index.md | 48 +++++++++++++++++++++++++++++++++++++++++++ themes/greyscale | 1 + 6 files changed, 65 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 archetypes/default.md create mode 100644 config.toml create mode 100644 content/_index.md create mode 160000 themes/greyscale diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..56b5332 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +pubilc/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..ae9f2c0 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/greyscale"] + path = themes/greyscale + url = https://github.com/runningstream/hugograyscale.git diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..2b48110 --- /dev/null +++ b/config.toml @@ -0,0 +1,6 @@ +baseURL = "https://milhousfamily.com/" +languageCode = "en-us" +title = "Milhous Family" +theme = "greyscale" +[Params] + description = "A Web home for the members of the Milhous Family" diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..b69b188 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,48 @@ +--- +# The Hugo Grayscale theme is a one page theme designed to be the front page to your site. Its content is populated via the front-matter in content/_index.md. The page consists of, in order: +# * a navbar at top linking to the other sections, and other arbitrary links +# * an intro section presenting a header title and into text with background image +# * an about section presenting a header and text with black background +# * a download section presenting header and text with background image +# * a contact section presenting header and text with black background +# +# The section names show up as the links in the navbar, so you may wish to rename them if, for example, you're not using it for the purpose suggested by the default section name. +# +# The background images are selected by filename - the intro section image must be named "intro-bg.jpg" and placed in the "static/img/" directory for your site. Similarly, the downloads section image must be named "downloads-bg.jpg" and placed in the "static/img/" directory for your site. See the default images in the theme's static directory for file size reference. + +title: "Milhous Family" +date: 2018-09-09T00:00:00-00:00 +copyright: "All Rights Reserved" +#mapsapikey: xxx + +#socialhandles: +# twitter: "stream_running" +# github: "runningstream" +# googplus: "goog_addr_here" + +menu: + - + url: "http://social.milhousfamily.com/users/sign_in" + name: "Social" + - + url: "http://lists.milhousfamily.com/" + name: "Mailing Lists" + +intro: + header: "Milhous Family" + text: "A home on the web for members of the Milhous Family." + +about: + header: "William Milhous Jr. and Martha Vickers" + text: "

This site and all its associated sites are for the descendents of Willam Milhous Jr. and Martha Vickers, along with their families.

" +# text: '

Grayscale is a free Hugo theme, originally created for Bootstrap by Start Bootstrap. It can be yours right now, simply download the template from the Github page. The theme is open source, and you can use it for any purpose, personal or commercial.

This theme was also adapted from a Jekyll version, brought to you by Jerome Lachaud

This theme features stock photos by Gratisography along with a custom Google Maps skin courtesy of Snazzy Maps.

Grayscale includes full HTML, CSS, and custom JavaScript files along with SASS and LESS files for easy customization!

' + +#download: +# rename: "Links" +# header: "Download Grayscale" +# text: '

You can download Grayscale for free from the Github page.

Visit Download Page' + +#contact: +# header: "Contact Start Bootstrap" +# text: '

Feel free to leave us a comment on the Grayscale template Github page to give some feedback about this theme!

' +--- diff --git a/themes/greyscale b/themes/greyscale new file mode 160000 index 0000000..46b003a --- /dev/null +++ b/themes/greyscale @@ -0,0 +1 @@ +Subproject commit 46b003ae0f90ed86a6c0baed51a1c2247cc1a9ee