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

Animated GIFs not showing at Quark blog list page

first-time

Started by Pavol Fodor 8 years ago · 3 replies · 748 views
8 years ago

Hi All,
I would like to show Animated GIF files in Quark blog list page.
Gif file is added to Page Media and also selected as Hero Image but not showing.
JPGs and PNGs works fine, but GIF not.

I tried to change filetype of GIF In user/config/media.yaml from animated to image but the result is, there is showing just static image and not animated gif.

Any ideas or suggestions how to fix it?

fodo

8 years ago

Animated gifs are not seen as being of type 'image' but as 'animated image' (see Supported Media Files).

In the blog template the 'hero_image' is selected from the set of 'images', which does not contain animated gifs... hence the 'hero_image' is not found.

Workaround:
In /user/themes/quark/templates/blog.html.twig replace the line:

TWIG
{% set blog_image = page.media.images[page.header.hero_image] ?: page.media.images|first %}

by:

TWIG
{% set blog_image = page.media[page.header.hero_image] ?: page.media.images|first %}

Hope this helps...

8 years ago

I have the same problem. I also wanted to add a gif and unfortunately I have not found a wise one that would suggest why it does not work.

8 years ago

As @pfodo has already mentioned, one could copy /system/config/media.yaml to user/config and change the 'gif' settings. So, I did...

YAML
types:
  ...
  gif:
    type: image
    thumb: media/thumb-gif.png
    mime: image/gif
  ...

However, contrary to @pfodo's experience, the gif does animate correctly in my project.

NB. I've logged an issue on the fact that page.media.images does not return gifs.

last edited 08/23/18 by pamtbaau

Suggested topics

Topic Participants Replies Views Activity
Themes & Styling · by Pedro M, 2 months ago
4 198 2 months ago
Themes & Styling · by Ian, 2 months ago
3 94 2 months ago
Themes & Styling · by Norbert, 2 years ago
11 455 3 months ago
Themes & Styling · by Lukáš Findeis, 3 months ago
0 48 3 months ago
Themes & Styling · by Sebadamus, 4 months ago
5 128 3 months ago