How to store images in content subdir #644
Answered
by
jamesbraza
jamesbraza
asked this question in
Q&A
-
I have a directory structure like this within
I am trying to get ---
title: Directory
resources:
- name: image-name
src: "images/image.jpg"
title: Some Image
---
{{< img name="image-name" >}} Currently, this is not working. How can I get images in a subdir to work with I have read these but am still stuck:
I have also tried |
Beta Was this translation helpful? Give feedback.
Answered by
jamesbraza
Jun 22, 2023
Replies: 1 comment
-
Okay, here and here led me to realize the issue was leaf vs branch bundles. I have to flatten to look like this:
I guess per the Zen of Python: Flat is better than nested. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jamesbraza
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Okay, here and here led me to realize the issue was leaf vs branch bundles. I have to flatten to look like this:
I guess per the Zen of Python: Flat is better than nested.