Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. {# v1 #}
  2. {# settings #}
  3. {% set faviconFileName = '/static/images/favicon.jpg' %}
  4. {% set sizesIcon = [192, 48, 32, 16] %}
  5. {% set sizesAppleTouch = [180] %}
  6. {# output #}
  7. {% if craft.app.plugins.isPluginEnabled('imager') and craft.imager.transformImage(faviconFileName, {}, null, {suppressExceptions : true}) %}
  8. {% for faviconSize in sizesIcon %}
  9. {% set faviconTransform = {
  10. width: faviconSize,
  11. height: faviconSize,
  12. quality: 100,
  13. position: 'center-center',
  14. format: 'png',
  15. } %}
  16. {{tag('link', {
  17. rel: 'icon',
  18. sizes: faviconSize ~ 'x' ~ faviconSize,
  19. type: 'image/png',
  20. href: craft.imager.transformImage(faviconFileName, faviconTransform, null, {suppressExceptions : true}),
  21. })}}
  22. {% endfor %}
  23. {# link touch icon #}
  24. {% for faviconSize in sizesAppleTouch %}
  25. {% set faviconTransform = {
  26. width: faviconSize,
  27. height: faviconSize,
  28. quality: 100,
  29. position: 'center-center',
  30. format: 'png',
  31. } %}
  32. {{tag('link', {
  33. rel: 'apple-touch-icon',
  34. sizes: faviconSize ~ 'x' ~ faviconSize,
  35. href: craft.imager.transformImage(faviconFileName, faviconTransform, null, {suppressExceptions : true}),
  36. })}}
  37. {% endfor %}
  38. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement