diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bcd669b --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/public/ +/resources/_gen/ +/assets/jsconfig.json +/.hugo_build.lock +hugo_stats.json 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.yaml b/hugo.yaml new file mode 100644 index 0000000..afda93c --- /dev/null +++ b/hugo.yaml @@ -0,0 +1,40 @@ +--- +baseURL: "https://pedini.dev" +languageCode: "en-us" +title: "Bryan Joshua Pedini" +theme: "hugo-coder" + +params: + author: "Bryan Joshua Pedini" + info: "FullStack developer, Networking/Docker specialist, DevOps enthusiast, k8s newbie, disco lover" + description: "Bryan's personal website / blog" + keywords: "blog,personal,developer,networking,docker,devops,k8s,kubernetes" + gravatar: "bryan@pedini.dev" + since: 2019 + commit: "https://git.bjphoster.com/source/pedini.dev/tree/" + + social: + - name: "Git" + icon: "fa-brands fa-git fa-2x" + weight: 1 + url: "https://git.bjphoster.com" + - name: "Instagram" + icon: "fa-brands fa-instagram fa-2x" + weight: 2 + url: "https://instagram.com/bryanp_og/" + +menu: + main: + - name: "About me" + weight: 1 + url: "about/" + - name: "Blog" + weight: 2 + url: "blog/" + - name: "Contacts" + weight: 3 + url: "contacts/" + +taxonomies: + category: "categories" + tag: "tags" diff --git a/makefile b/makefile new file mode 100644 index 0000000..dee1960 --- /dev/null +++ b/makefile @@ -0,0 +1,9 @@ +#!make + +default: build + +build: + hugo + +run: + hugo server