Where is the path of images?

The structure of the directory.

├── archetypes
│ └── default.md
├── config.toml
├── content
│ ├── _index.md
│ ├── about
│ │ └── _index.md
│ ├── contact.md
│ └── posts
│ ├── _index.md
│ ├── quantum_physics.md
│ └── senkei1.md
├── layouts
├── static
│ └── images
│ └── Meeting_Paris.jpg

(Meeting_Paris.jpg is in images. Not the same level as images.)

Hi, I wanted to upload images in my articles. I put the image in “static/images/” (the same level of content) and then coded like below.

{{< figure src=“images/Meeting_Paris.jpg” title=“Paris”>}}

However, there is no images on my site.

I can see the image in _http://localhost:1313/itigen/images/Meeting_Paris.jpg_. So what’s the problem? Please tell me why there is no image on my site…

Regards.

Do you need a / at the start of the path? So try /images/Meeting_Paris.jpg.

1 Like