docbrown/app/views/stories/_sign_in_invitation.html.erb
Dan Wallis 521bb09394
Add loading=lazy to image tags (#10888)
* Add loading=lazy to image tags

* Fix test

* Lazy-load some obvious templates

* Lazy-load more verified templates
2021-05-27 19:01:21 +02:00

20 lines
777 B
Text

<div class="authentication-feed__card" id="in-feed-cta">
<div class="authentication-feed__container">
<figure class="authentication-feed__image-container">
<img class="authentication-feed__image" src="<%= optimized_image_url(Settings::General.logo_png, width: 190) %>"
alt="Secondary <%= community_name %> logo" loading="lazy" />
</figure>
<div class="authentication-feed__content">
<h2 class="authentication-feed__title">
<%= render "shared/authentication_title" %>
</h2>
<p class="authentication-feed__description">
<%= render "shared/authentication_description" %>
</p>
</div>
</div>
<div class="authentication-feed__actions">
<%= render "shared/authentication_actions" %>
</div>
</div>