commit f801ed5bb717656ccd97f363eb7c4f2f0af5b192 Author: Dustin C. Hatch Date: Sat Feb 29 10:16:09 2020 -0600 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9ae0f08 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/public/ +/resources/_gen/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..179cb0c --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/hello-friend-ng"] + path = themes/hello-friend-ng + url = https://github.com/rhazdon/hugo-theme-hello-friend-ng.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..ec5400b --- /dev/null +++ b/config.toml @@ -0,0 +1,22 @@ +baseURL = "/" +languageCode = "en-us" +title = "chmod 777" +relativeURLS = true + +theme = "hello-friend-ng" + +[params] +defaultTheme = "dark" +homeSubtitle = "never type this command" + +[params.logo] +logoText = "chmod 777" +logoCursorColor = "#c0c0c0" +logoCursorAnimate = "0s" + + +[menu] +[[menu.main]] +identifier = "posts" +name = "Posts" +url = "posts/" diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..f873e13 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,29 @@ +{{ define "main" }} +
+
+

{{ .Site.Title }}

+ + {{- with .Site.Params.homeSubtitle }} +

{{.}}

+ {{- end }} +
+
+
+ {{- range first 5 (.Site.RegularPages.GroupByDate "2006") }} + + {{- end }} +
+{{ end }} diff --git a/themes/hello-friend-ng b/themes/hello-friend-ng new file mode 160000 index 0000000..e63dce7 --- /dev/null +++ b/themes/hello-friend-ng @@ -0,0 +1 @@ +Subproject commit e63dce70a95afeae279c7bc48eb488a4086c496c