Initial commit

This commit is contained in:
Brieuc Dubois 2024-01-19 12:36:37 +01:00
commit fac83012be
8 changed files with 77 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
/public/
/resources/_gen/
/assets/jsconfig.json
hugo_stats.json
/.hugo_build.lock

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "themes/hugo-blog-awesome"]
path = themes/hugo-blog-awesome
url = git@github.com:hugo-sid/hugo-blog-awesome.git

5
archetypes/default.md Normal file
View File

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

BIN
assets/img/logo.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

BIN
assets/img/profile.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

View File

@ -0,0 +1,5 @@
+++
title = 'Hello World'
date = 2024-01-19T10:59:41+01:00
draft = false
+++

58
hugo.toml Normal file
View File

@ -0,0 +1,58 @@
baseURL = 'https://blog.bdubois.io'
languageCode = 'en-gb'
title = "Brieuc Dubois's blog"
theme = 'hugo-blog-awesome'
relativeURLs= true
uglyURLs = true
enableEmoji = true
[[params.socialIcons]]
name = "gitea"
url = "https://git.bhasher.com"
[[params.socialIcons]]
name = "github"
url = "https://github.com/BhasherBEL"
[[params.socialIcons]]
name = "matrix"
url = "https://matrix.to/#/@bhasher:bhasher.com"
[[params.socialIcons]]
name = "rss"
url = "feed.xml"
[outputs]
home = [ "HTML", "RSS" ]
[markup]
[markup.highlight]
noClasses = false
[menu]
[[menu.main]]
pageRef = '/'
name = 'Home'
weight = 10
[[menu.main]]
pageRef = "posts"
name = 'Posts'
weight = 20
[[menu.main]]
pageRef = 'about'
name = 'About'
weight = 30
[params]
sitename = "Brieuc Dubois"
defaultColor = "dark"
description = "Blog of Brieuc Dubois about computer science, software engineering, linux, devops, web developpement, cybersecurity."
rssFeedDescription = "full"
[params.author]
avatar = "img/profile.webp"
intro = "Brieuc Dubois"
name = "Brieuc Dubois"
# TODO
description = "Computer scientist student from Belgium passionate by programming and learning new things such as DevOps, Go, Svelte or network security."

@ -0,0 +1 @@
Subproject commit 4c799345b5c8daa186baf5ce22a306d5b84ca9c4