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"] [submodule "themes/hugo-profile"]
path = themes/hugo-coder path = themes/hugo-profile
url = https://github.com/luizdepra/hugo-coder.git url = https://github.com/gurusabarish/hugo-profile.git
+2 -3
View File
@@ -1,9 +1,8 @@
--- ---
title: "Smart Home Setup" title: "Smart Home Setup"
date: 2026-02-19 date: 2026-02-19
draft: false image: "medal.webp" # This is the key Hugo Profile looks for!
thumbnail: "shrek.jpg" summary: "A deep dive into my automated home lab."
featureImage: "shrek.jpg"
--- ---
this is my amazing smart home! 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/" baseURL = "https://me.marlow.boats/"
title = "Ash Marlow | Portfolio" title = "Ash Marlow"
theme = "hugo-coder" theme = "hugo-profile"
languageCode = "en"
defaultContentLanguage = "en"
[pagination] [pagination]
pagerSize = 20 pagerSize = 20
[params] [params]
# General Info
author = "Ash Marlow" author = "Ash Marlow"
description = "Personal Portfolio & Projects" description = "Systems Engineer & Self-Hosting Enthusiast"
keywords = "blog,developer,personal" avatar = "img/avatar.jpg" # Place your photo in static/img/avatar.jpg
info = "Systems Engineer & Self-Hosting Enthusiast"
avatarUrl = "img/avatar.jpg" # Place your photo in static/img/avatar.png # Theme Toggle (Dark/Light)
footercontent = "Built with Hugo and 💙" # This theme handles it automatically with a built-in toggle
colorProtocol = "prefer-dark" # Makes dark mode the default
showColorToggle = true # Homepage Sections
colorscheme = "auto" [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]] [[params.social]]
name = "Github" icon = "github"
icon = "fa fa-2x fa-github"
weight = 1
url = "https://github.com/ashtom50" url = "https://github.com/ashtom50"
[[params.social]] [[params.social]]
name = "LinkedIn" icon = "linkedin"
icon = "fa fa-2x fa-linkedin"
weight = 2
url = "https://www.linkedin.com/in/ash-marlow/" url = "https://www.linkedin.com/in/ash-marlow/"
# The Menu (This links to your blog/projects) # Menu Configuration
[[menu.main]] [[menu.main]]
name = "About" name = "About"
url = "/#about"
weight = 1 weight = 1
url = "about/" [[menu.main]]
name = "Experience"
url = "/#experience"
weight = 2
[[menu.main]] [[menu.main]]
name = "Projects" name = "Projects"
weight = 2 url = "/projects"
url = "projects/" weight = 3
[[menu.main]] [[menu.main]]
name = "Blog" name = "Blog"
weight = 3 url = "/posts"
url = "posts/"
[[menu.main]]
name = "Contact"
weight = 4 weight = 4
url = "contact/"
Submodule themes/hugo-profile added at ecc48c8db3