Change to Hugo Profile

This commit is contained in:
Ash Marlow
2026-02-20 07:44:26 +00:00
parent 0f5960d134
commit a037248010
7 changed files with 43 additions and 36 deletions
+3 -3
View File
@@ -1,3 +1,3 @@
[submodule "themes/hugo-coder"]
path = themes/hugo-coder
url = https://github.com/luizdepra/hugo-coder.git
[submodule "themes/hugo-profile"]
path = themes/hugo-profile
url = https://github.com/gurusabarish/hugo-profile.git
+2 -3
View File
@@ -1,9 +1,8 @@
---
title: "Smart Home Setup"
date: 2026-02-19
draft: false
thumbnail: "shrek.jpg"
featureImage: "shrek.jpg"
image: "medal.webp" # This is the key Hugo Profile looks for!
summary: "A deep dive into my automated home lab."
---
this is my amazing smart home!
Binary file not shown.

After

Width:  |  Height:  |  Size: 544 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

+37 -29
View File
@@ -1,49 +1,57 @@
baseURL = "https://me.marlow.boats/"
title = "Ash Marlow | Portfolio"
theme = "hugo-coder"
languageCode = "en"
defaultContentLanguage = "en"
title = "Ash Marlow"
theme = "hugo-profile"
[pagination]
pagerSize = 20
[params]
# General Info
author = "Ash Marlow"
description = "Personal Portfolio & Projects"
keywords = "blog,developer,personal"
info = "Systems Engineer & Self-Hosting Enthusiast"
avatarUrl = "img/avatar.jpg" # Place your photo in static/img/avatar.png
footercontent = "Built with Hugo and 💙"
colorProtocol = "prefer-dark" # Makes dark mode the default
showColorToggle = true
colorscheme = "auto"
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"
# Social links for your CV
[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]]
name = "Github"
icon = "fa fa-2x fa-github"
weight = 1
icon = "github"
url = "https://github.com/ashtom50"
[[params.social]]
name = "LinkedIn"
icon = "fa fa-2x fa-linkedin"
weight = 2
icon = "linkedin"
url = "https://www.linkedin.com/in/ash-marlow/"
# The Menu (This links to your blog/projects)
# Menu Configuration
[[menu.main]]
name = "About"
url = "/#about"
weight = 1
url = "about/"
[[menu.main]]
name = "Experience"
url = "/#experience"
weight = 2
[[menu.main]]
name = "Projects"
weight = 2
url = "projects/"
url = "/projects"
weight = 3
[[menu.main]]
name = "Blog"
weight = 3
url = "posts/"
[[menu.main]]
name = "Contact"
url = "/posts"
weight = 4
url = "contact/"
Submodule themes/hugo-profile added at ecc48c8db3