I am aware this question has been addressed multiple times, and the developer console indicates that it is failing to load a CSS resource; screenshot below:
I’m not sure what I need to do. I verified that my base url was properly written in the config doc, as well as the path directories, and that I’m deploying my site from the docs folder, not the Master where my hugo project is hosted.
Thus it’s most likely an issue with the CSS is not linking up properly. I’m uncertain whether it’s an issue with the UglifyCSS resource folder not being inside the docs folder, although when I run my site locally the theme is rendering as intended.
Edits:
Link to GitHub repo: https://github.com/HP-Nunes/portfolio
config.toml
baseurl = "https://hp-nunes.github.io/portfolio/"
title = "Hadrien's Digital Wall"
theme = "coder"
themesDir = "themes"
publishDir = "docs"
languagecode = "en"
defaultcontentlanguage = "en"
paginate = 20
canonifyurls = true
pygmentsstyle = "bw"
pygmentscodefences = true
pygmentscodefencesguesssyntax = true
disqusShortname = "yourdiscussshortname"
[params]
author = "Hadrien N Picq"
info = "Programmatic Geographer"
description = "Hadrien Picq's portfolio website"
keywords = "blog,Hadrien,personal,portfolio"
avatarurl = "/images/avatard.jpg"
favicon_32 = "/img/favicon-32x32.png"
favicon_16 = "/img/favicon-16x16.png"
footercontent = "Where we are is who we are"
dateformat = "January 2, 2006"
hidecredits = false
hidecopyright = false
rtl = false
math = true
custom_css = ["css/custom.css"]
# Social links
[[params.social]]
name = "Github"
icon = "fab fa-github fa-2x"
weight = 1
url = "https://github.com/HP-Nunes"
[[params.social]]
name = "LinkedIn"
icon = "fab fa-linkedin"
weight = 2
url = "https://www.linkedin.com/in/hadnunpi/"
[[params.social]]
name = "Twitter"
icon = "fab fa-twitter fa-2x"
weight = 3
url = "https://twitter.com/geocuriosity"
# Menu links
[[menu.main]]
name = "Blog"
weight = 1
url = "/posts/"
[[menu.main]]
name = "About"
weight = 2
url = "/about/"
[[menu.main]]
name = "Projects"
weight = 3
url = "/projects/"
[[menu.main]]
name = "Contact me"
weight = 5
url = "/contact/"
[languages]
[languages.en]
languagename = "English" # The language name to be displayed in the selector.
title = "Hadrien's Digital Wall"
# You can configure the theme parameter for each language.
[languages.en.params]
author = "Hadrien N Picq"
info = "Programmatic Geographer"
description = "Hadrien Picq's portfolio website"
keywords = "blog,Hadrien,personal, portfolio"
[languages.en.menu] # It is possible to change the menu too.
[[languages.en.menu.main]]
name = "About"
weight = 1
url = "/about/"
[[languages.en.menu.main]]
name = "Blog"
weight = 2
url = "/posts/"
[[languages.en.menu.main]]
name = "Projects"
weight = 3
url = "/projects/"
[[languages.en.menu.main]]
name = "Contact me"
weight = 5
url = "/contact/"
[languages.br]
languagename = "Luso-Brasileiro"
title = "Muralha Digital de Hadrien"
[languages.br.params]
author = "Hadrien N Picq"
description = "Site portfólio do Hadrien Picq"
keywords = "blog,portfólio,Hadrien,pessoal"
info = "Geógrafo Programático"
footercontent = "Importamo-nos apenas com o lugar onde estamos"
[languages.br.menu]
[[languages.br.menu.main]]
name = "Sobre"
weight = 1
url = "/br/sobre/"
[[languages.br.menu.main]]
name = "Blog"
weight = 2
url = "/br/posts/"
[[languages.br.menu.main]]
name = "Projetos"
weight = 3
url = "/projects/"
[[languages.br.menu.main]]
name = "Contactar-me"
weight = 5
url = "/contact/"
[languages.fr]
languagename = "Français"
title = "Mur Digital d'Hadrien"
[languages.fr.params]
author = "Hadrien N Picq"
description = "Portfolio web d'Hadrien Picq"
keywords = "blog,portfolio,Hadrien,personnel"
info = "Géographe Programmatique"
footercontent = "Où nous sommes est qui nous sommes"
[languages.fr.menu]
[[languages.fr.menu.main]]
name = "À propos"
weight = 1
url = "/fr/propos/"
[[languages.fr.menu.main]]
name = "Blog"
weight = 2
url = "/fr/posts/"
[[languages.fr.menu.main]]
name = "Projets"
weight = 3
url = "/projects/"
[[languages.fr.menu.main]]
name = "Me Contacter"
weight = 5
url = "/contact/"