Hugo toml to yaml
Build and publish / docker (push) Successful in 56s
Details
Build and publish / docker (push) Successful in 56s
Details
This commit is contained in:
parent
413db19c6d
commit
1971d58926
|
@ -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
|
||||
|
|
58
hugo.toml
58
hugo.toml
|
@ -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."
|
||||
|
|
@ -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
|
||||
|
Loading…
Reference in New Issue