A few questions about images #945
Replies: 5 comments 3 replies
-
I was editing and realized I need to use the new content bundle, okay so I sorted that but there's featured image which is above the fold when you open the blog post. A cover image which is the smaller image on the blog roll page. Where does the thumbnail image come show up? |
Beta Was this translation helpful? Give feedback.
-
what is the order if i have: can i have all three and they all show up? It seems like if feature is there, nothing else shows up. If no feature then cover shows up. I haven't seen thumbnail show up. Can you provide some clarification on those? |
Beta Was this translation helpful? Give feedback.
-
The featured image is designed to show only one image.
The theme will try to resize the page image resources (not According to the example you provided, you're misunderstanding the page resources, the images should be placed in the page folder. The structure like this:
|
Beta Was this translation helpful? Give feedback.
-
there are some issues with the way you handle image resources. |
Beta Was this translation helpful? Give feedback.
-
I think the way you handle images is missing a few features. Remember that images can be bundled resources or other formats such as check to make sure that your processing handles all of those cases. |
Beta Was this translation helpful? Give feedback.
-
in this image section about thumbnails, feature images, etc...
You want the images in the front matter. I can add 1 image and it will be the main image for the blog post if I add
images = [/images/image.jpg']
Let's say that I have my posts in content/posts/post-title.md
i place all my images in static/images/post-title.jpg
then I add this to the front matter of my toml file
images = ['/images/post-title.jpg']
if I add these two image files to my static/image folder
post-title-feature.jpg
post-title-thumbnail.jpg
then i add both to my post images section
images = ['/images/post-title-feature.jpg', '/images/post-title-thumbnail.jpg']
only one show up as both the featured image and the thumbnail.
can you explain the feature, thumbnail and cover image and how do I properly setup and use them?
I have all my posts as .md files in content/posts directory and didn't create subfolder for each post. Do I need to create a sub folder for each post to have these image types work correctly?
Beta Was this translation helpful? Give feedback.
All reactions