Initial Hugo Commit
This commit is contained in:
commit
8b1d44b50f
6 changed files with 69 additions and 0 deletions
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
|
@ -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
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "themes/PaperMod"]
|
||||||
|
path = themes/PaperMod
|
||||||
|
url = https://github.com/adityatelange/hugo-PaperMod.git
|
8
README.md
Normal file
8
README.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Personal Site
|
||||||
|
Simple Hugo Static Site for my Personal Site
|
||||||
|
|
||||||
|
## Running
|
||||||
|
`hugo serve`
|
||||||
|
##
|
||||||
|
|
||||||
|
**TODO: Expand ReadMe**
|
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
43
config.yaml
Normal file
43
config.yaml
Normal file
|
@ -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"
|
1
themes/PaperMod
Submodule
1
themes/PaperMod
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 9ea3bb0e1f3aa06ed7715e73b5fabb36323f7267
|
Loading…
Reference in a new issue