After a frustrating few hours trying, I still can't seem to get the basic demo working:
(1) launch command: hugo server --baseUrl="http://aquaairlab.com/" --appendPort=false
(because apparently "hugo server" overrides the baseURL setting in the config file, and unless appentPort is set to false, the port gets added; but I'm using a virtual server that proxies to the hugo server, and I don't want clients to need to see the port added).
(2) config file:
baseurl = "http://aquaairlab.com/"
languageCode = "en-us"
theme = "hugo-uno"
title = "Aqua Air Laboratories, Inc"
(3) the problem -- theme files aren't being included properly, here's what the links to include css and javascript look like in the generated HTML
| <link rel="stylesheet" type="text/css" href="http://aquaairlab.com//css/uno.min.css" /> |
The subdirectory names where these files live aren't being incorporated into the HTML!
I've probably done something dumb, but what is it?
Thanks,