|
1 | 1 | {% load wagtailcore_tags wagtailimages_tags wagtail_cache navigation_tags %}
|
2 |
| - |
3 | 2 | <footer class="footer">
|
4 |
| - |
5 | 3 | <div class="grid footer__top ">
|
6 | 4 | <span class="grid__footer-line footer__line"></span>
|
7 | 5 | {% with contact=page.footer_contact %}
|
8 | 6 | {% if contact %}
|
9 | 7 | {% include "patterns/molecules/footer-cta/footer-cta.html" with contact_heading=contact.title contact_text=contact.text contact_link=contact.link contact_name=contact.name contact_role=contact.role contact_image=contact.image contact_action=contact.button_text contact_email=contact.email_text %}
|
10 | 8 | {% endif %}
|
11 | 9 | {% endwith %}
|
12 |
| - |
13 | 10 | <div class="grid__footer-links">
|
14 | 11 | {% wagtailcache 600 "footerlinks" current_site.pk is_pattern_library %}
|
15 | 12 | {% footerlinks %}
|
16 | 13 | {% endwagtailcache %}
|
17 |
| - |
18 | 14 | <ul class="footer__socials">
|
19 | 15 | <li>
|
20 |
| - <a aria-label="Follow us on Twitter" href="https://twitter.com/torchbox" class="footer__social-link"> |
| 16 | + <a aria-label="Follow us on Twitter" |
| 17 | + href="https://twitter.com/torchbox" |
| 18 | + class="footer__social-link"> |
21 | 19 | <svg width="24" height="24" aria-hidden="true" class="footer__social-icon">
|
22 | 20 | <use xlink:href="#twitter" />
|
23 | 21 | </svg>
|
24 | 22 | </a>
|
25 | 23 | </li>
|
26 | 24 | <li>
|
27 |
| - <a aria-label="Connect with us on LinkedIn" href="https://www.linkedin.com/company/torchbox" class="footer__social-link"> |
| 25 | + <a aria-label="Connect with us on LinkedIn" |
| 26 | + href="https://www.linkedin.com/company/torchbox" |
| 27 | + class="footer__social-link"> |
28 | 28 | <svg width="24" height="24" aria-hidden="true" class="footer__social-icon">
|
29 | 29 | <use xlink:href="#linkedin" />
|
30 | 30 | </svg>
|
31 | 31 | </a>
|
32 | 32 | </li>
|
33 | 33 | <li>
|
34 |
| - <a aria-label="Follow us on Instagram" href="https://www.instagram.com/torchboxltd/" class="footer__social-link"> |
| 34 | + <a aria-label="Follow us on Instagram" |
| 35 | + href="https://www.instagram.com/torchboxltd/" |
| 36 | + class="footer__social-link"> |
35 | 37 | <svg width="24" height="24" aria-hidden="true" class="footer__social-icon">
|
36 | 38 | <use xlink:href="#instagram" />
|
37 | 39 | </svg>
|
|
40 | 42 | </ul>
|
41 | 43 | </div>
|
42 | 44 | </div>
|
43 |
| - |
44 | 45 | <div class="footer__bottom-container">
|
45 | 46 | <div class="grid footer__bottom">
|
46 | 47 | <div class="grid__footer-logos">
|
|
52 | 53 | <li>
|
53 | 54 | {% with logo.link as link %}
|
54 | 55 | <a class="footer__logo-link" href="{{ link.url }}">
|
55 |
| - {% image logo.image max-100x100 format-webp loading="lazy" class="footer__logo" alt=logo.alt_text|default:logo.image.title %} |
| 56 | + {% if logo.image.width > logo.image.height %} |
| 57 | + {% image logo.image max-200x100 format-webp loading="lazy" class="footer__logo" alt=logo.alt_text|default:logo.image.title %} |
| 58 | + {% else %} |
| 59 | + {% image logo.image max-100x100 format-webp loading="lazy" class="footer__logo footer__logo--narrow" alt=logo.alt_text|default:logo.image.title %} |
| 60 | + {% endif %} |
56 | 61 | </a>
|
57 | 62 | {% endwith %}
|
58 | 63 | </li>
|
|
65 | 70 | <div class="grid__footer-company">
|
66 | 71 | <div class="footer__company">
|
67 | 72 | <div class="footer__company-address">
|
68 |
| - <p>© Torchbox {% now "Y" %} - </p><address>3rd Floor, 15 Colston St, Bristol, BS1 5AP</address> |
| 73 | + <p>© Torchbox {% now "Y" %} -</p> |
| 74 | + <address>3rd Floor, 15 Colston St, Bristol, BS1 5AP</address> |
69 | 75 | </div>
|
70 | 76 | <div>
|
71 | 77 | <p>Registered in England & Wales. Company no. 3983354, VAT no. 752981011</p>
|
72 | 78 | </div>
|
73 | 79 | </div>
|
74 | 80 | </div>
|
75 | 81 | </div>
|
76 |
| - |
77 | 82 | {% include "patterns/molecules/carbon-impact/carbon-impact.html" %}
|
78 | 83 | </div>
|
79 |
| - |
80 | 84 | {% include "patterns/molecules/cookie-message/cookie-message.html" %}
|
81 |
| - |
82 | 85 | </footer>
|
0 commit comments