Hugo toml to yaml
Build and publish / docker (push) Successful in 3m50s Details

This commit is contained in:
Brieuc Dubois 2024-01-19 13:48:21 +01:00
parent 413db19c6d
commit a8e541672a
3 changed files with 54 additions and 58 deletions

View File

@ -38,3 +38,7 @@ jobs:
linux/arm64
tags: |
git.bhasher.com/bhasher/blog:latest
- name: Deploy
run: |
curl -X POST https://portainer.bxl.bhasher.com/api/webhooks/33ee1445-1dba-4c3b-9384-0dc8f7e85369

View File

@ -1,58 +0,0 @@
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."

50
hugo.yaml Normal file
View File

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