Images are not copied to the output folder in Pelican

Inside pelicanconf.py I have:

STATIC_PATHS = ['images', 'extra/CNAME'] 

I have an image file inside images / filename.jpg

When I run pelican content , my content is restored as expected, but a folder for images is not created, and my file does not fit inside the output folder.

How can I get the image file in the output folder that will be used on my site?

Using Pelican 3.5 with Python 2.7.8

+6
source share
1 answer

You must put the images in the "content / images" folder.

+2
source

Source: https://habr.com/ru/post/978773/


All Articles