I recently started learning jekyll, and generating pages on localhost (win 7), I have installed a plugin that generates responsive images and HTML tags where the liquid tags are placed in pages or posts. here is the link to the plugin: https://github.com/wildlyinaccurate/jekyll-responsive-image
it does work fine and generate responsive images and proper tags for it.
but I have one image link on frontmatter, for every posting page, this link print an image on top of the posting page, and I want to have this image also treated as responsive images as well, liquid tags can not be added on frontmatter, as the result all images on top of post pages are not responsive, is there a way to make it work?
here is the example of frontmatter of one of my post:
---
layout: post
title: "test for dog grooming"
categories: [ do-grooming ]
image: assets/images/dog.jpg
---
and here is the front matter tag I use in posts:
{% responsive_image figure: true path: assets/images/petfood.jpg %}
thank you for your help