Initial commit
This commit is contained in:
commit
d914f0a03c
17 changed files with 350 additions and 0 deletions
160
config.yaml
Normal file
160
config.yaml
Normal file
|
@ -0,0 +1,160 @@
|
|||
baseURL: https://staging.bluemedia.dev/
|
||||
languageCode: en-us
|
||||
title: Bluemedia
|
||||
theme: hugo-profile
|
||||
|
||||
outputs:
|
||||
home:
|
||||
- "HTML"
|
||||
- "RSS"
|
||||
- "JSON"
|
||||
page:
|
||||
- "HTML"
|
||||
- "RSS"
|
||||
|
||||
Paginate: 3
|
||||
enableRobotsTXT: true
|
||||
|
||||
markup:
|
||||
goldmark:
|
||||
renderer:
|
||||
unsafe: true
|
||||
|
||||
Menus:
|
||||
main:
|
||||
- identifier: blog
|
||||
name: Blog
|
||||
title: Blog posts
|
||||
url: /blog
|
||||
weight: 1
|
||||
|
||||
params:
|
||||
# General settings
|
||||
title: "Bluemedia"
|
||||
description: Text about my cool site
|
||||
favicon: "/fav.png"
|
||||
useBootstrapCDN: false
|
||||
|
||||
singlePages:
|
||||
readTime:
|
||||
enable: true
|
||||
content: "min read"
|
||||
scrollprogress:
|
||||
enable: true
|
||||
|
||||
# Design settings
|
||||
animate: true
|
||||
color:
|
||||
textColor: "#23282f"
|
||||
secondaryTextColor: "#23282f"
|
||||
primaryColor: "#23282f"
|
||||
|
||||
font:
|
||||
fontSize: 1.2rem
|
||||
fontWeight: 500
|
||||
|
||||
navbar:
|
||||
menus:
|
||||
disableExperience: true
|
||||
disableEducation: true
|
||||
disableAchievements: true
|
||||
|
||||
# Hero
|
||||
hero:
|
||||
enable: true
|
||||
intro: "Hi there! My name is"
|
||||
title: "Oliver aka Bluemedia"
|
||||
subtitle: "I'm a sysadmin, hacker, and open-source enthusiast"
|
||||
image: /images/hero.jpg
|
||||
button:
|
||||
enable: true
|
||||
name: "Find out more"
|
||||
url: "#about"
|
||||
download: false
|
||||
newPage: false
|
||||
socialLinks:
|
||||
fontAwesomeIcons:
|
||||
- icon: fab fa-github
|
||||
url: https://github.com/BluemediaGER
|
||||
- icon: fab fa-mastodon
|
||||
url: https://chaos.social/@Bluemedia
|
||||
- icon: fa fa-link
|
||||
url: https://bluemedia.dev/social
|
||||
|
||||
# About
|
||||
about:
|
||||
enable: true
|
||||
title: "About Me"
|
||||
image: "/images/about.jpg"
|
||||
content: |-
|
||||
Whether at my main job, at events of the Chaos Computer Club, or with my own AS in the DN42 network: I do a lot of stuff with technology.
|
||||
And I'm always curious to discover even more.
|
||||
|
||||
Using that knowledge I try to create something valuable for myself and others. Whether it is a small project of my own, or a contribution to a larger project.
|
||||
skills:
|
||||
enable: true
|
||||
title: "Here are a few technologies I've been using recently:"
|
||||
items:
|
||||
- "PowerDNS"
|
||||
- "MariaDB Galera"
|
||||
- "MinIO"
|
||||
- "Keycloak"
|
||||
- "Ansible"
|
||||
- "Checkmk"
|
||||
|
||||
# Projects
|
||||
projects:
|
||||
enable: true
|
||||
items:
|
||||
- title: ScanOS
|
||||
content: A modern operating system for enterprise-grade network image scanners.
|
||||
image: /images/projects/scan-os.png
|
||||
badges:
|
||||
- "Embedded Systems"
|
||||
- "Python 3"
|
||||
- "FastAPI"
|
||||
- "Vue.js 3"
|
||||
- "Tailwind CSS"
|
||||
links:
|
||||
- icon: fab fa-github
|
||||
url: https://github.com/BluemediaGER/ScanOS
|
||||
|
||||
- title: Fancy Gatus
|
||||
content: A simplified and modern status page based on data from a Gatus instance. The goal is to only display the most important information in a way that is understandable for end users.
|
||||
image: /images/projects/fancy-gatus.png
|
||||
featured:
|
||||
name: Demo
|
||||
link: https://status.bluemedia.dev
|
||||
badges:
|
||||
- "Gatus"
|
||||
- "Status page"
|
||||
- "Vue.js 3"
|
||||
links:
|
||||
- icon: fab fa-github
|
||||
url: https://github.com/BluemediaGER/fancy-gatus
|
||||
|
||||
- title: Keycloak Modern Login
|
||||
content: A clean and modern Keycloak login theme that's built using Vue.js 3, Tailwind CSS and Typescript. It is easily extensible and bypasses the complexity of FreeMarker templates.
|
||||
image: /images/projects/keycloak-modern-login.jpg
|
||||
badges:
|
||||
- "Keycloak"
|
||||
- "Vue.js 3"
|
||||
- "Tailwind CSS"
|
||||
links:
|
||||
- icon: fab fa-github
|
||||
url: https://git.bluemedia.dev/Bluemedia/keycloak-modern-login
|
||||
|
||||
# Contact
|
||||
contact:
|
||||
enable: true
|
||||
content: My inbox is always open. Feel free to contact me if you have a question or just want to talk about cool computer stuff. I'll try my best to get back to you!
|
||||
email: hi@bluemedia.dev
|
||||
btnName: Say hi!
|
||||
|
||||
footer:
|
||||
recentPosts:
|
||||
path: "blog"
|
||||
count: 3
|
||||
title: Recent Posts
|
||||
enable: true
|
||||
disableFeaturedImage: false
|
Loading…
Add table
Add a link
Reference in a new issue