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

Genaral question about Frontmatter and markdown and twig

Started by Muut Archive 10 years ago · 6 replies · 915 views
10 years ago

I've chosen big-picture the one-page skeleton for further development. I see lots of content in frontmatter (is this twig?). Is it possible to put it into markdown for better editing? I would like to add alt tags e.g.

10 years ago

Obligatory link to the documentation

Twig is a templating "language" used in the templates. You can also activate it and use it in individual pages, both front matter and content.

The front matter of the page (at the top, between the three hyphes) is standard YAML. You can flip some switches to put some Twig variables in the front matter, but you can't put Markdown there.

If you could explain what it is you're trying to accomplish, perhaps we could give some specific help.

10 years ago

At the moment I would like to add "alt" tags to the images. In the wiki it is explained for markdown, but at the big-picture theme the images are set in the front matter with YAML.

10 years ago

In the frontmatter it looks like:
images:

YAML
    title: 'Photographie | Pasta'
    full: 01_full.jpg
    thumbnail: 01_thumbnail.jpg
10 years ago

To add the alt texts for the thumbnails, do this:

In the frontmatter, add your alt texts like this

YAML
images:
    -
        title: Proin sollicitudin at ipsum ut efficitur
        full: 01_full.jpg
        thumbnail: 01_thumbnail.jpg
        alt: Some text here

    -
        title: Etiam congue tellus a rutrum aliquet
        full: 02_full.jpg
        thumbnail: 02_thumbnail.jpg
        alt: Some more text here

And so on.

Then, in the file /user/themes/big-picture/templates/modular/gallery.html.twig, edit line 17 to add the alttext:

TWIG
<img src="{{ page.media[image.thumbnail].url }}" title="{{ image.title|escape }}" alt="{{ image.alt }}" />
10 years ago

Thanks a lot for that precise explanation :)

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1357 9 years ago
Archive · by Muut Archive, 9 years ago
2 936 9 years ago
Archive · by Muut Archive, 9 years ago
2 4066 9 years ago
Archive · by Muut Archive, 9 years ago
1 2954 9 years ago
Archive · by Muut Archive, 9 years ago
3 1120 9 years ago