FEAT: Starting with hugo

So far, really like it
This commit is contained in:
2023-11-14 23:34:43 +00:00
parent a9d5ba300d
commit b5bfeb9030
9 changed files with 74 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "quickstart/themes/risotto"]
path = quickstart/themes/risotto
url = https://github.com/joeroe/risotto.git

View File

View File

@ -0,0 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++

View File

View File

@ -0,0 +1,22 @@
+++
title = 'Home'
date = 2023-11-14T17:55:14Z
+++
# Hi, I'm John
---
I am a Software Engineer, currently working at Decipad. I'm interested in various subjects including: Compilers, Web Development, Distributed System and many more.
---
# Projects
---
I have some Projects
- Bruh 1
- Bruh 2
- Bruh 3

View File

@ -0,0 +1,6 @@
+++
title = 'Blog'
date = 2023-11-14T17:55:14Z
+++
This is the blog page

View File

@ -0,0 +1,8 @@
+++
title = 'My First Post'
date = 2023-11-14T17:55:14Z
+++
# Hello World
This is a post

29
quickstart/hugo.toml Normal file
View File

@ -0,0 +1,29 @@
baseURL = 'https://example.org/'
languageCode = 'en-uk'
title = 'John Costa'
theme = 'risotto'
[menu]
[[menu.main]]
name = 'Blog'
pageRef = '/blog'
# Sidebar: about/bio
[params.about]
title = "John Costa"
description = "A really good software engineer"
# Sidebar: social links
# Available icon sets:
# * FontAwesome 6 <https://fontawesome.com/> ('fa-brands', 'fa-normal', or 'fa-solid' for brands)
# * Academicons <https://jpswalsh.github.io/academicons> ('ai ai-')
[[params.socialLinks]]
icon = "fa-brands fa-github"
title = "GitHub"
url = "https://github.com/joeroe/risotto"
[[params.socialLinks]]
icon = "fa-solid fa-envelope"
title = "Email"
url = "mailto:example@example.com"