diff --git a/hugo.toml b/hugo.toml index ab86d6c..453c9bf 100644 --- a/hugo.toml +++ b/hugo.toml @@ -1,39 +1,41 @@ -baseURL = 'https://me.marlow.boats' -languageCode = 'en-uk' -# title = 'My Self-Hosted Blog' -theme = 'PaperMod' -[author] - name = "Ash Marlow" - - +baseURL = "https://me.marlow.boats/" +title = "Your Name | Portfolio" +theme = "hugo-coder" +languageCode = "en" +defaultContentLanguage = "en" +paginate = 20 [params] - defaultTheme = "auto" - showShareButtons = true - showCodeCopyButtons = true 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 💙" - # Profile Mode - [params.profileMode] - enabled = true - title = "Ash Marlow" - subtitle = "Physics | Software Engineer | Automation" - imageUrl = "img/avatar.jpg" # Place your photo in static/img/avatar.pn - imageWidth = 150 - imageHeight = 150 - - [[params.profileMode.buttons]] - name = "View My Projects" - url = "/posts" - - [[params.profileMode.buttons]] - name = "Download CV" - url = "/cv.pdf" # Place your PDF in static/cv.pdf + # Social links for your CV + [[params.social]] + name = "Github" + icon = "fa fa-2x fa-github" + weight = 1 + url = "https://github.com/ashtom50" + [[params.social]] + name = "LinkedIn" + icon = "fa fa-2x fa-linkedin" + weight = 2 + url = "https://www.linkedin.com/in/ash-marlow/" - # Social Icons for your CV - [[params.socialIcons]] - name = "github" - url = "https://your-gitea-link-or-github" - [[params.socialIcons]] - name = "linkedin" - url = "https://www.linkedin.com/in/ash-marlow/" \ No newline at end of file +# The Menu (This links to your blog/projects) +[[menu.main]] + name = "About" + weight = 1 + url = "about/" +[[menu.main]] + name = "Projects" + weight = 2 + url = "projects/" +[[menu.main]] + name = "Contact" + weight = 3 + url = "contact/" +