diff --git a/.gitignore b/.gitignore index c79f8bb..ee86547 100644 --- a/.gitignore +++ b/.gitignore @@ -145,3 +145,5 @@ dist .yarn/install-state.gz .pnp.* +package.json +package-lock.json \ No newline at end of file diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..546dcf9 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,15 @@ +{ + "plugins": [ + "prettier-plugin-go-template" + ], + "overrides": [ + { + "files": [ + "*.html" + ], + "options": { + "parser": "go-template" + } + } + ] + } \ No newline at end of file diff --git a/README.md b/README.md index 3422d43..d69ad35 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,14 @@ # gallowelds.com -git repository for https://gallowelds.com/ \ No newline at end of file +``` +git clone https://git.myco.systems/mycosystems/gallowelds.com.git +``` +``` +git submodule update --init --recursive +``` + +Optionally we recommend installing prettier, the prettierrc file is preconfigured to use the go template plugin. + +``` +npm install --save-dev prettier prettier-plugin-go-template +``` \ No newline at end of file diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..7e568b8 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,3 @@ +baseURL = 'https://example.org/' +languageCode = 'en-us' +title = 'My New Hugo Site'