kirby-responsive-images
kirby-responsive-images copied to clipboard
Bring responsive images to Kirby CMS
@jancbeck Would be useful if the plugin has the ability to pass an `ignore` parameter to not apply the srcset/responsive images behaviour. This would be especially useful if you have...
Solves https://github.com/jancbeck/kirby-responsive-images/issues/13
I would like to achieve this equivalent (plain HTML version): ``` ``` So I entered this into the config.php: ``` c::set('responsiveimages.sizes', array( 'contentimage' => array( 'size_value' => '100vw', 'mq_value' =>...
Added a check for the existence of caption, if so displays it as per standard Kirby (just copied the lines above...)
Imagine the following scenario: I have horizontally oriented (landscape) images with a max side length of 2400x1600px and vertically oriented (portrait) images with a max side length of 1600x2400px. For...
As far as I can tell, this plugin currently only adds the `srcset` and `sizes` attributes to images that are used in kirbytext. What about the other images in a...
I'm not sure if I understand the ["Sizes" section of the documentation](https://github.com/jancbeck/kirby-responsive-images#sizes) correctly, but is there currently any way to set a different `sizes` attribute per template / blueprint? I...
Hi there, Just a heads up, I'm interested in being able to define per-image what the sizes should be in the template rather than in kirby's options, and also whether...