mirror of
https://github.com/supleed2/supleed2-old-projects-blog.git
synced 2024-12-22 14:15:48 +00:00
Initial Commit
Basic Hugo Site setup Placeholder files Templates to be built
This commit is contained in:
commit
4c34add542
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
# Auto detect text files and perform LF normalization
|
||||||
|
* text=auto
|
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Hugo generated files
|
||||||
|
resources/_gen/
|
||||||
|
public/
|
6
.gitmodules
vendored
Normal file
6
.gitmodules
vendored
Normal file
|
@ -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
|
0
.hugo_build.lock
Normal file
0
.hugo_build.lock
Normal file
3
.markdownlint.yml
Normal file
3
.markdownlint.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
default: true
|
||||||
|
MD025:
|
||||||
|
front_matter_title: ""
|
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
44
config.yml
Normal file
44
config.yml
Normal file
|
@ -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:
|
8
content/about.md
Normal file
8
content/about.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: "About me"
|
||||||
|
date: 2022-01-06T20:28:18Z
|
||||||
|
draft: true
|
||||||
|
url: "about"
|
||||||
|
---
|
||||||
|
|
||||||
|
# About Page
|
11
content/contact.md
Normal file
11
content/contact.md
Normal file
|
@ -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)
|
8
content/posts/000_welcome.md
Normal file
8
content/posts/000_welcome.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: "Welcome"
|
||||||
|
date: 2022-01-03T22:06:34Z
|
||||||
|
draft: true
|
||||||
|
url: "welcome"
|
||||||
|
---
|
||||||
|
|
||||||
|
# Welcome Page
|
13
content/posts/001_first-post.md
Normal file
13
content/posts/001_first-post.md
Normal file
|
@ -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
|
1
themes/PaperMod
Submodule
1
themes/PaperMod
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit c59193fc48c104389d8b3e9e6857c7aa46221a92
|
1
themes/Stack
Submodule
1
themes/Stack
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit d1656215684b042ea341e2ba93933722956630b5
|
Loading…
Reference in a new issue