Pages create without a theme

Hi all,
I’m a novice in using hugo and i have a problem.
When tested by the server, everything is fine. “hugo server -D”

But when I create a site I get this “hugo -D”:

Thx help me.

You can display images with this syntax:

 ![the img title](http://somesite.com/path/to/image.jpg)

Are you trying to create a site that you can run by opening on your file system like you’re doing in the second screenshot? Look at the page source, and see how the css is being called, in terms of its path especially. It appears that your site cannot find the css file.

As a new user I can not upload two pictures so I put it in quotes…

"“Are you trying to create a site that you can run by opening on your file system like you’re doing in the second screenshot?”"
Yes. I’m sure it will not find a CSS file but I do not know why…

I followed this:

  1. “hugo new site ABC”
  2. “download a copy to folder themes” https://github.com/frjo/hugo-theme-zen/archive/master.zip
  3. “hugo -D”
  4. “start public\index.html”

I suppose I missed something but what?

Discourse can be a bit restrictive at first, for anti-spam measures. I’d forgotten about the upload limit but, I changed the code so they display.

What’s in your config.toml?

The relative path for the CSS may be the issue, can you post the html where you reference the css file?

If I understand this correctly, because I have set (baseURL = “http://example.org/”), CSS is loaded from the “example.org/css/styles.css” page that does not exist?

config.toml:
https://pastebin.com/raw/JnX1w6FD

index.html:
https://pastebin.com/raw/NxkqmXMv

Umm, you seem to be calling the style sheet relative to the page. So that’s probably not the issue. (it may be an issue on your post pages though)

Can you open up your inspector window (right click -> inspect element) and check where the href is pointing then check your public file to make sure the css file is in the right place.