-
|
I have set up the images modules and I got „Site Image Resources“ to work. However I would prefer to use „Page Image Resource“. According to the documentation that should be possible. However, no matter where I put the images all I get is WARN image not found: Opcode.png
WARN image not found: Vertors.png
WARN image not found: Main.png
WARN image not found: Screenshot_at_Jul_16_18-35-24.png?height=320px
WARN image not found: Screenshot_at_Jul_16_18-36-18.png?height=329px
WARN image not found: Screenshot_at_Jul_16_18-37-15.png?width=640pxI have tried the I have searched github for the Full source in |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
|
Hi @krischik, your code service seems private, it returns 404. To use the page's images resources, you'll need to organize your pages as page bundles. For example. content/
blog/
hello/
index.md
sample.pngThere is a The real example is the images module docs, it uses the image page resource ( |
Beta Was this translation helpful? Give feedback.
-
That was my first attempt as well. But thanks for the page bundles link. I was struggling with the |
Beta Was this translation helpful? Give feedback.
-
|
Thanks. The following successfully converted one page: cd content/atari/hello_world
mkdir car_using_assembler
git mv car_using_assembler.md car_using_assembler/index.md
git mv ../../../static/atari/hello_world/car_using_assembler/* car_using_assembler The rest ist just diligence. |
Beta Was this translation helpful? Give feedback.
Hi @krischik, your code service seems private, it returns 404.
To use the page's images resources, you'll need to organize your pages as page bundles. For example.
content/ blog/ hello/ index.md sample.pngThere is a
/blog/hellopage which contains one image resource, then you can access the image in the content (index.md).The real example is the images module docs, it uses the image page resource (
featured.jpeg) as example.