Sha256: 3acf90e9cb14cc24a50c2957196c774573806f17cc869b45d7953a9c49d6e592
Contents?: true
Size: 542 Bytes
Versions: 3
Compression:
Stored size: 542 Bytes
Contents
<!doctype html> <html> <head> <title>Hello World</title> </head> <body> <picture> <source srcset="<%= image_path 'original.jpg', resize_to: '20x20' %>" media="(min-width: 900px)"> <%= image_tag 'original.jpg', resize_to: '10x10>', class: 'image-resized-to10x10' %> </picture> <picture> <source srcset="<%= image_path 'original.jpg', resize_to: '15x15' %>" media="(min-width: 900px)"> <%= image_tag 'original.jpg', resize_to: '5x5', class: 'image-resized-to5x5' %> </picture> </body> </html>
Version data entries
3 entries across 3 versions & 1 rubygems