new to Ruby - inserting un-clickable images into footer

Hello,   Looking to add accreditation icons in footer (below social media icons).

Last line of social media icon looks like this:

{% if settings.show_wordpress %} <a href="{{ settings.wordpress_url }}" target="_blank"><img src="{{ 'Wordpress.jpg' | asset_url }}" width="32px"></a>{% endif %} </ul>

Just looking to insert non-clickable images (actually three of them) after that line. I have added the three images as new assets (this is shopify theme).

Thanks in advance Carl

Well, if you don't want it to be clickable, then don't make it an anchor, IOW don't wrap it in <a></>. That's pretty basic HTML, not really a Ruby on Rails question. Which is good, since your snippet doesn't seem to be embedded Ruby at all. Are you sure you came to the right place to ask this???

That's pretty basic HTML, not really a Ruby on Rails question.

+1

Which is good, since your snippet doesn't seem to be embedded Ruby at all.

Actually, it's the Liquid templating language used by Shopify --   <http://docs.shopify.com/themes/liquid-documentation/basics&gt;

FWIW,

Ah, thanks. I tried googling everything I could think of regarding alternatives for embedded Ruby, and came up empty. It's still not RoR at all, is it?