commit 4c34add542a8ef9bdaf5b3d20145a261878586d3 Author: Aadi Desai <21363892+supleed2@users.noreply.github.com> Date: Wed Dec 29 21:28:33 2021 +0000 Initial Commit Basic Hugo Site setup Placeholder files Templates to be built diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a5356fb --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Hugo generated files +resources/_gen/ +public/ \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..e5dec5f --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "themes/PaperMod"] + path = themes/PaperMod + url = https://github.com/adityatelange/hugo-PaperMod.git +[submodule "themes/Stack"] + path = themes/Stack + url = https://github.com/CaiJimmy/hugo-theme-stack.git diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/.markdownlint.yml b/.markdownlint.yml new file mode 100644 index 0000000..6a0a081 --- /dev/null +++ b/.markdownlint.yml @@ -0,0 +1,3 @@ +default: true +MD025: + front_matter_title: "" \ No newline at end of file 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.yml b/config.yml new file mode 100644 index 0000000..db815b3 --- /dev/null +++ b/config.yml @@ -0,0 +1,44 @@ +# command: hugo server -D --bind=0.0.0.0 --baseURL=http://192.168.0.12:1313 +baseURL: https://projects.8bitsqu.id/ +languageCode: en-gb +title: Aadi | Projects +# TO DO: Update Title +theme: PaperMod +# TO DO: Go through themes and select +# paginate: 2 +permalinks: + posts: /:year/:month/:day/:slug/ + +# Font Awesome icons? + +# PaperMod: very cool, keep in mind +params: + # figure out params at https://github.com/adityatelange/hugo-PaperMod/ + defaultTheme: auto + description: A personal website to show off projects and things I've done +menu: + main: + - name: Home + weight: 1 + url: / + - name: About + weight: 2 + url: /about + - name: Projects + weight: 3 + url: /posts/ + - name: Contact Me + weight: 4 + url: /contact +# archive page: content/archives.md +# --- +# title: "Archive" +# date: 2022-01-06T21:20:51Z +# draft: true +# layout: "archives" +# url: "/archives/" +# summary: archives +# --- + +# Stack: VERY Clean, especially on desktop, keep in mind +# params: diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..f02a898 --- /dev/null +++ b/content/about.md @@ -0,0 +1,8 @@ +--- +title: "About me" +date: 2022-01-06T20:28:18Z +draft: true +url: "about" +--- + +# About Page diff --git a/content/contact.md b/content/contact.md new file mode 100644 index 0000000..ede166e --- /dev/null +++ b/content/contact.md @@ -0,0 +1,11 @@ +--- +title: "Contact" +date: 2022-01-06T20:30:16Z +draft: true +--- + +# Contact Details Page + +Follow me on: + +- [GitHub](https://github.com/supleed2) diff --git a/content/posts/000_welcome.md b/content/posts/000_welcome.md new file mode 100644 index 0000000..d5aad34 --- /dev/null +++ b/content/posts/000_welcome.md @@ -0,0 +1,8 @@ +--- +title: "Welcome" +date: 2022-01-03T22:06:34Z +draft: true +url: "welcome" +--- + +# Welcome Page diff --git a/content/posts/001_first-post.md b/content/posts/001_first-post.md new file mode 100644 index 0000000..06e56d0 --- /dev/null +++ b/content/posts/001_first-post.md @@ -0,0 +1,13 @@ +--- +title: "Testing First Post" +date: 2021-12-29T18:07:22Z +draft: true +slug: "test-first-post" +--- + +# To be replaced + +Created at a really odd time, I'm just getting used to how Huge works and +setting up the basics. + +## Placeholder File diff --git a/themes/PaperMod b/themes/PaperMod new file mode 160000 index 0000000..c59193f --- /dev/null +++ b/themes/PaperMod @@ -0,0 +1 @@ +Subproject commit c59193fc48c104389d8b3e9e6857c7aa46221a92 diff --git a/themes/Stack b/themes/Stack new file mode 160000 index 0000000..d165621 --- /dev/null +++ b/themes/Stack @@ -0,0 +1 @@ +Subproject commit d1656215684b042ea341e2ba93933722956630b5