Initial commit
This commit is contained in:
commit
fac83012be
|
@ -0,0 +1,5 @@
|
|||
/public/
|
||||
/resources/_gen/
|
||||
/assets/jsconfig.json
|
||||
hugo_stats.json
|
||||
/.hugo_build.lock
|
|
@ -0,0 +1,3 @@
|
|||
[submodule "themes/hugo-blog-awesome"]
|
||||
path = themes/hugo-blog-awesome
|
||||
url = git@github.com:hugo-sid/hugo-blog-awesome.git
|
|
@ -0,0 +1,5 @@
|
|||
+++
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
date = {{ .Date }}
|
||||
draft = true
|
||||
+++
|
Binary file not shown.
After Width: | Height: | Size: 69 KiB |
Binary file not shown.
After Width: | Height: | Size: 87 KiB |
|
@ -0,0 +1,5 @@
|
|||
+++
|
||||
title = 'Hello World'
|
||||
date = 2024-01-19T10:59:41+01:00
|
||||
draft = false
|
||||
+++
|
|
@ -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
|
Loading…
Reference in New Issue