Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Lazy Load Images #179

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions views/homepage/sponsors.twig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<div>
<a href="https://www.spectrumit.co.uk/">
<img src="/images/spectrum.jpg" alt="Spectrum"/>
<img src="/images/spectrum.jpg" alt="Spectrum" loading="lazy"/>
<h6>Spectrum IT</h6>
</a>

Expand All @@ -15,7 +15,7 @@

<div>
<a href="https://shop.oreilly.com/">
<img src="/images/orm.jpg" alt="O'Reilly User Group Program"/>
<img src="/images/orm.jpg" alt="O'Reilly User Group Program" loading="lazy"/>
<h6>O'Reilly User Group Program</h6>
</a>

Expand All @@ -25,7 +25,7 @@

<div>
<a href="https://www.jetbrains.com/phpstorm/">
<img src="/images/logo_phpstorm.png" alt="JetBrains PhpStorm"/>
<img src="/images/logo_phpstorm.png" alt="JetBrains PhpStorm" loading="lazy"/>
<h6>JetBrains PhpStorm</h6>
</a>

Expand Down
2 changes: 1 addition & 1 deletion views/talk_list.twig
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<div class="pod">
{% if talk.avatar %}
<img class="circle large" src="{{ talk.avatar }}"/>
<img class="circle large" src="{{ talk.avatar }}" loading="lazy"/>
{% endif %}

<h3>{{ talk.title }}</h3>
Expand Down