From c6902829f158115bd41e732f6d8e73a98afe0328 Mon Sep 17 00:00:00 2001 From: Gregory Hellings Date: Mon, 24 Aug 2020 23:46:05 -0500 Subject: [PATCH] Bare minimal blog --- .gitignore | 2 ++ .gitmodules | 3 +++ archetypes/default.md | 6 +++++ config.toml | 53 +++++++++++++++++++++++++++++++++++++ content/posts/blog-begin.md | 8 ++++++ themes/anatole | 1 + 6 files changed, 73 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 archetypes/default.md create mode 100644 config.toml create mode 100644 content/posts/blog-begin.md create mode 160000 themes/anatole diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..71e8b0b --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +public/* +.*.swp diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..b1b9af4 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/anatole"] + path = themes/anatole + url = https://github.com/lxndrblz/anatole.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..30ad6f0 --- /dev/null +++ b/config.toml @@ -0,0 +1,53 @@ +baseURL = "http://thehellings.com/" +languageCode = "en-us" +title = "The Hellings" +theme = "anatole" +enableEmoji = true +enableRobotsTXT = true + +# Enable Disqus +disqusShortname = "thehellings" + +# Google Analytics +#googleAnalytics = "UA-123-45" + +[params] +title = "The Hellings" +author = "Greg Hellings" +description = "The Hellings Family" +pygmentsCodeFences = true +pygmentsUseClasses = true + +[menu] + + [[menu.main]] + name = "Home" + identifier = "home" + weight = 100 + url = "/" + + [[menu.main]] + name = "Posts" + weight = 200 + identifier = "posts" + url = "/posts/" + +[[params.socialIcons]] +icon = "fa-linkedin" +title = "Linkedin" +url = "https://www.linkedin.com/" + +[[params.socialIcons]] +icon = "fa-github" +title = "GitHub" +url = "https://github.com/greg-hellings/" + +[[params.socialIcons]] +icon = "fa-instagram" +title = "instagram" +url = "https://www.instagram.com/greghellings/" + +[[params.socialIcons]] +icon = "fa-envelope" +title = "e-mail" +url = "mailto:greg.hellings@gmail.com" diff --git a/content/posts/blog-begin.md b/content/posts/blog-begin.md new file mode 100644 index 0000000..df67063 --- /dev/null +++ b/content/posts/blog-begin.md @@ -0,0 +1,8 @@ +--- +title: "Blog Begin" +date: 2020-08-24T23:13:05-05:00 +draft: false +tags: ["introduction"] +--- +Hi, my name is Greg. I'm just getting started back to writing a blog, working +with the Hugo site generator. So yeah, that's what I'm doing! diff --git a/themes/anatole b/themes/anatole new file mode 160000 index 0000000..e50fc74 --- /dev/null +++ b/themes/anatole @@ -0,0 +1 @@ +Subproject commit e50fc746e15d306af7af30d9ebb0a7c60d1aaaf4