Bare minimal blog

This commit is contained in:
Gregory Hellings
2024-04-22 01:38:31 -05:00
committed by Greg Hellings
parent b977a0eb53
commit c6902829f1
6 changed files with 73 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
public/*
.*.swp
+3
View File
@@ -0,0 +1,3 @@
[submodule "themes/anatole"]
path = themes/anatole
url = https://github.com/lxndrblz/anatole.git
+6
View File
@@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---
+53
View File
@@ -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"
+8
View File
@@ -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!
+1
Submodule themes/anatole added at e50fc746e1