commit d82b1e67c8df04f4be67e7068401c2f10a8210be Author: Anthony Cicchetti Date: Sun Jun 9 14:20:06 2019 -0400 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c19ebbb --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +# Hugo default output directory +public + +## OS Files +# Windows +Thumbs.db +ehthumbs.db +Desktop.ini +$RECYCLE.BIN/ + +# OSX +.DS_Store diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..3acfcd8 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "themes/hyde-y"] + path = themes/hyde-y + url = https://github.com/enten/hyde-y +[submodule "themes/edidor"] + path = themes/edidor + url = https://github.com/jacobsun/edidor 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..c9e75af --- /dev/null +++ b/config.toml @@ -0,0 +1,4 @@ +baseURL = "https://blog.anthonycicchetti.com/" +languageCode = "en-us" +title = "Musings - Recipes, thoughts, link aggregations, who knows!" +theme = "edidor" diff --git a/content/posts/hello-world.md b/content/posts/hello-world.md new file mode 100644 index 0000000..57672d4 --- /dev/null +++ b/content/posts/hello-world.md @@ -0,0 +1,7 @@ +--- +title: "Hello World" +date: 2019-06-09T13:51:28-04:00 +draft: false +--- +## First Entry +hello world! This has been generated with Hugo! diff --git a/justfile b/justfile new file mode 100644 index 0000000..405d99b --- /dev/null +++ b/justfile @@ -0,0 +1,5 @@ +deploy: build + rsync -avz --delete public/ acicchetti@anthonycicchetti.com:/var/www/blog.anthonycicchetti.com/public + +build: + hugo diff --git a/themes/edidor b/themes/edidor new file mode 160000 index 0000000..5754a7a --- /dev/null +++ b/themes/edidor @@ -0,0 +1 @@ +Subproject commit 5754a7a8ed8fe626c3aa73b70627f5001c55e3f4 diff --git a/themes/hyde-y b/themes/hyde-y new file mode 160000 index 0000000..d4b96a8 --- /dev/null +++ b/themes/hyde-y @@ -0,0 +1 @@ +Subproject commit d4b96a8c075493ca175f6465b1bcc457ca74b452