Initial commit
This commit is contained in:
commit
d82b1e67c8
8 changed files with 42 additions and 0 deletions
12
.gitignore
vendored
Normal file
12
.gitignore
vendored
Normal 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
6
.gitmodules
vendored
Normal 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
6
archetypes/default.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
4
config.toml
Normal file
4
config.toml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
baseURL = "https://blog.anthonycicchetti.com/"
|
||||||
|
languageCode = "en-us"
|
||||||
|
title = "Musings - Recipes, thoughts, link aggregations, who knows!"
|
||||||
|
theme = "edidor"
|
7
content/posts/hello-world.md
Normal file
7
content/posts/hello-world.md
Normal 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
5
justfile
Normal 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
1
themes/edidor
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 5754a7a8ed8fe626c3aa73b70627f5001c55e3f4
|
1
themes/hyde-y
Submodule
1
themes/hyde-y
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit d4b96a8c075493ca175f6465b1bcc457ca74b452
|
Loading…
Add table
Reference in a new issue