Hey y’all, I am an undergrad trying to create a personal website with Hugo and have super little experience with web dev outside of just classes. How do I add an image to my site? I have my image in the static folder and tried using the markdown format in my yourpost.md and it cannot find it or even render it in my IDE (pycharm). Here is my structure
`
personal_website
content
posts
yourpost.md
static
profile.png
`
Thats the md I tried using. Any help would be appreciated!
When posting code, configuration, or data on this forum, please wrap the text within triple backticks or use the </> button in the menu.
```
my code
```
Depending on where you placed your image, it is not surprising that the image is not rendered when viewing the page with an IDE. I suggest you create an example site and look at the structure and markdown.
The first command below may look a bit strange, but it creates a sample site with content.
hugo new theme mysite --themesDir .
cd mysite/
hugo server