From 8b1d44b50fa05113cd4af61ff697971bbb1b315c Mon Sep 17 00:00:00 2001 From: Sam Tate Date: Thu, 27 Jun 2024 22:18:13 +0100 Subject: [PATCH] Initial Hugo Commit --- .gitignore | 8 ++++++++ .gitmodules | 3 +++ README.md | 8 ++++++++ archetypes/default.md | 6 ++++++ config.yaml | 43 +++++++++++++++++++++++++++++++++++++++++++ themes/PaperMod | 1 + 6 files changed, 69 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 README.md create mode 100644 archetypes/default.md create mode 100644 config.yaml create mode 160000 themes/PaperMod diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..84a5fae --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +# Generated files by hugo +/public/ +/resources/_gen/ +/assets/jsconfig.json +hugo_stats.json + +# Temporary lock file while building +/.hugo_build.lock \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..89af1b0 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/PaperMod"] + path = themes/PaperMod + url = https://github.com/adityatelange/hugo-PaperMod.git diff --git a/README.md b/README.md new file mode 100644 index 0000000..7a3afe3 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Personal Site +Simple Hugo Static Site for my Personal Site + +## Running +`hugo serve` +## + +**TODO: Expand ReadMe** \ 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.yaml b/config.yaml new file mode 100644 index 0000000..6fd201e --- /dev/null +++ b/config.yaml @@ -0,0 +1,43 @@ +baseURL: https://sa.mtate.me.uk/ +languageCode: en-gb +theme: ["PaperMod"] +title: Sam Tate + +languages: + en: + languageName: "English" + weight: 1 + # taxonomies: + # category: categories + # tag: tags + # series: series + # menu: + # main: + # - name: Archive + # url: archives + # weight: 5 + # - name: Search + # url: search/ + # weight: 10 + # - name: Tags + # url: tags/ + # weight: 10 + # - name: WiKi + # url: https://github.com/adityatelange/hugo-PaperMod/wiki/ + +params: + homeInfoParams: + Title: "Sam Tate" + Content: > + - Under construction homepage + + socialIcons: + - name: gitea + title: View Source on Github + url: "https://git.mtate.me.uk" + - name: LinkedIn + title: LinkedIn + url: "https://uk.linkedin.com/in/sam-tate-860b39172" + - name: KoFi + title: Buy me a Ko-Fi :) + url: "https://ko-fi.com/samtate" \ No newline at end of file diff --git a/themes/PaperMod b/themes/PaperMod new file mode 160000 index 0000000..9ea3bb0 --- /dev/null +++ b/themes/PaperMod @@ -0,0 +1 @@ +Subproject commit 9ea3bb0e1f3aa06ed7715e73b5fabb36323f7267