Initial commit

This commit is contained in:
Anthony Cicchetti 2019-06-09 14:20:06 -04:00
commit d82b1e67c8
8 changed files with 42 additions and 0 deletions

12
.gitignore vendored Normal file
View file

@ -0,0 +1,12 @@
# Hugo default output directory
public
## OS Files
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
# OSX
.DS_Store

6
.gitmodules vendored Normal file
View file

@ -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

6
archetypes/default.md Normal file
View file

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

4
config.toml Normal file
View file

@ -0,0 +1,4 @@
baseURL = "https://blog.anthonycicchetti.com/"
languageCode = "en-us"
title = "Musings - Recipes, thoughts, link aggregations, who knows!"
theme = "edidor"

View file

@ -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!

5
justfile Normal file
View file

@ -0,0 +1,5 @@
deploy: build
rsync -avz --delete public/ acicchetti@anthonycicchetti.com:/var/www/blog.anthonycicchetti.com/public
build:
hugo

1
themes/edidor Submodule

@ -0,0 +1 @@
Subproject commit 5754a7a8ed8fe626c3aa73b70627f5001c55e3f4

1
themes/hyde-y Submodule

@ -0,0 +1 @@
Subproject commit d4b96a8c075493ca175f6465b1bcc457ca74b452