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

How to get meta og:image in theme base html

Solved by pamtbaau View solution

Started by Iusew 5 years ago · 8 replies · 1023 views
5 years ago

I am making a custom theme for myslef I need meta og:image in order to show the image automatically without adding in markdown I seen here https://learn.getgrav.org/17/themes/theme-vars but nothing helped me the title and description works super but in og:image it shows colon not allowed
{{ header.metadata.og:image }}
then I did some research I found we have to use it like this
{{ header.metadata.'og:image' }}But now it shows new error Expected name or number.

5 years ago

Can anyone please help me regarding this?

5 years ago

Try {{ header.metadata['og:image'] }}

5 years ago

Not Working! no errors just empty space :slightly_frowning_face:

5 years ago

How does your frontmatter look like?

5 years ago Solution

@Iusew The following works just fine...

typography.md

YAML
---
title: Typography
metadata:
  'og:title': The Rock
  'og:type': video.movie
  'og:url': http://www.imdb.com/title/tt0117500/
  'og:image': http://ia.media-imdb.com/images/rock.jpg
---

quark/templates/default.html.twig

TWIG
{% block content %}
 {{ header.metadata['og:image'] }}

 {{ page.content|raw }}
{% endblock %}
5 years ago

SUPER ULTRA Thank You So much from last 3 days I was looking for a Solution Thanks a LOT.

5 years ago

@Iusew, But what was the solution? Can't be the Twig code, because my snippet is the same snippet as the one from @Karmalakas.

Did you find any issue with the frontmatter?

Please don't mark a post as solution without pointing out what was causing the issue and what solved it.

5 years ago

Sorry in Karmalakas Post I bymistake copied that formatting of discourse and hence it didn't worked, after you shown then I typed it myself it worked 😅

Suggested topics

Topic Participants Replies Views Activity
Themes & Styling · by Pedro M, 2 months ago
4 197 2 months ago
Themes & Styling · by Ian, 2 months ago
3 92 2 months ago
Themes & Styling · by Norbert, 2 years ago
11 454 3 months ago
Themes & Styling · by Lukáš Findeis, 3 months ago
0 47 3 months ago
Themes & Styling · by Sebadamus, 4 months ago
5 127 3 months ago