Skip to content
Grav 2.0 is officially stable. Read the announcement →

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

Themes & Styling

Page Objects & YAML Front Matter

first-time

Solved by Paul Massendari View solution

Started by Mason 8 years ago · 3 replies · 769 views
8 years ago

Hi,
My code for post-item.html.twig can be found here

So I am attempting to show the first image in the blog post on the screen above, hence, I have included {% set blog_image= page.media.images|first %}. However, I am unsure of how to call on this in the <img src="">, and no image is showing up.

Moreover, it seems that there is something wrong with my YAML Front Matter as I specify the Page Author {{ page.header.author }}, however when it displays on the site (as shown in the image) it shows nothing, despite me adding an author in the post.md

Any help would be fantastic!

8 years ago

Due to image restrictions, here is the information I wish to change.
image|690x366

8 years ago Solution

as you are in a for loop, you have to use the variable you defined, in this case post.

Example:

TWIG
{% for post in page.children %}
{{post.title }}
{{ post.header.author }}
{{ post.media.images|first }} {# will display the img tag #}
<img src="{{ post.media.images|first.url}}"
{% endfor %}

Also you have some kind of weird syntax here:

TXT
<img src="$blog_image.url" alt=""/>

Where does this come from?

Hope it helps,

👍 1
8 years ago

@paul:
as you are in a for loop, you have to use the variable you defined, in this case post.

Example:

TWIG
{% for post in page.children %}
{{post.title }}
{{ post.header.author }}
{{ post.media.images|first }} {# will display the img tag #}
<img src="{{ post.media.images|first.url}}"
{% endfor %}

Also you have some kind of weird syntax here:

TXT
<img src="$blog_image.url" alt=""/>

Where does this come from?

Hope it helps,

Ahh Perfect! Thank you for that! You've fixed all my problems!
Cheers.

last edited 03/23/18 by Mason

Suggested topics

Topic Participants Replies Views Activity
Themes & Styling · by Pedro M, 2 months ago
4 193 2 months ago
Themes & Styling · by Ian, 2 months ago
3 90 2 months ago
Themes & Styling · by Norbert, 2 years ago
11 449 3 months ago
Themes & Styling · by Lukáš Findeis, 3 months ago
0 44 3 months ago
Themes & Styling · by Sebadamus, 4 months ago
5 123 3 months ago