You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was searching on the source code why many links get static files using http:// protocol. That produces a mixed-content error. This is why the web is broken.
If you go to get started page. You will see that the CSS is not loading. If you open the network inspector, you will see an error while loading CSS saying mixed-content.
Checking the source code, I found that the file inside themes/colly/layouts/_default/baseof.html you will that the link tags that import static files uses absURL. This function as you can see in hugo docs takes the baseURL and the provided path and generates the full URL of the asset. This error may happen to the rest of the page.
Try to change the baseURL link setting, the https protocol. Also, review that more links use the correct protocol. I hope this could help.
The text was updated successfully, but these errors were encountered:
I was searching on the source code why many links get static files using
http://
protocol. That produces a mixed-content error. This is why the web is broken.If you go to get started page. You will see that the CSS is not loading. If you open the network inspector, you will see an error while loading CSS saying mixed-content.
Checking the source code, I found that the file inside
themes/colly/layouts/_default/baseof.html
you will that the link tags that import static files usesabsURL
. This function as you can see in hugo docs takes thebaseURL
and the provided path and generates the full URL of the asset. This error may happen to the rest of the page.Try to change the
baseURL
link setting, thehttps
protocol. Also, review that more links use the correct protocol. I hope this could help.The text was updated successfully, but these errors were encountered: