58 lines
1.4 KiB
TOML
58 lines
1.4 KiB
TOML
baseURL = "https://me.marlow.boats/"
|
|
title = "Ash Marlow"
|
|
theme = "hugo-profile"
|
|
|
|
[pagination]
|
|
pagerSize = 20
|
|
|
|
[params]
|
|
# General Info
|
|
author = "Ash Marlow"
|
|
description = "Systems Engineer & Self-Hosting Enthusiast"
|
|
avatar = "img/avatar.jpg" # Place your photo in static/img/avatar.jpg
|
|
|
|
# Theme Toggle (Dark/Light)
|
|
# This theme handles it automatically with a built-in toggle
|
|
|
|
# Homepage Sections
|
|
[params.about]
|
|
enable = true
|
|
title = "About Me"
|
|
content = "Systems Engineer passionate about home labs, networking, and automation."
|
|
image = "img/about.jpg"
|
|
|
|
[params.experience]
|
|
enable = true
|
|
title = "Experience"
|
|
[[params.experience.list]]
|
|
company = "Your Company"
|
|
position = "Systems Engineer"
|
|
duration = "2024 - Present"
|
|
content = "Working on LXC, Docker, and Webhooks."
|
|
|
|
# Social Icons
|
|
[[params.social]]
|
|
icon = "github"
|
|
url = "https://github.com/ashtom50"
|
|
[[params.social]]
|
|
icon = "linkedin"
|
|
url = "https://www.linkedin.com/in/ash-marlow/"
|
|
|
|
# Menu Configuration
|
|
[[menu.main]]
|
|
name = "About"
|
|
url = "/#about"
|
|
weight = 1
|
|
[[menu.main]]
|
|
name = "Experience"
|
|
url = "/#experience"
|
|
weight = 2
|
|
[[menu.main]]
|
|
name = "Projects"
|
|
url = "/projects"
|
|
weight = 3
|
|
[[menu.main]]
|
|
name = "Blog"
|
|
url = "/posts"
|
|
weight = 4
|