commit fac83012be67ce4d46bbcd3a0984cb726fa54f07 Author: Brieuc Dubois Date: Fri Jan 19 12:36:37 2024 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6f345f2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/public/ +/resources/_gen/ +/assets/jsconfig.json +hugo_stats.json +/.hugo_build.lock diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..e099614 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/hugo-blog-awesome"] + path = themes/hugo-blog-awesome + url = git@github.com:hugo-sid/hugo-blog-awesome.git diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/assets/img/logo.webp b/assets/img/logo.webp new file mode 100644 index 0000000..45d2283 Binary files /dev/null and b/assets/img/logo.webp differ diff --git a/assets/img/profile.webp b/assets/img/profile.webp new file mode 100644 index 0000000..bb6e5eb Binary files /dev/null and b/assets/img/profile.webp differ diff --git a/content/posts/hello-world.md b/content/posts/hello-world.md new file mode 100644 index 0000000..5aa5218 --- /dev/null +++ b/content/posts/hello-world.md @@ -0,0 +1,5 @@ ++++ +title = 'Hello World' +date = 2024-01-19T10:59:41+01:00 +draft = false ++++ diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..276912f --- /dev/null +++ b/hugo.toml @@ -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." + diff --git a/themes/hugo-blog-awesome b/themes/hugo-blog-awesome new file mode 160000 index 0000000..4c79934 --- /dev/null +++ b/themes/hugo-blog-awesome @@ -0,0 +1 @@ +Subproject commit 4c799345b5c8daa186baf5ce22a306d5b84ca9c4