You are here

block--system-branding-block.html.twig in Zircon Profile 8.0

Bartik's theme implementation for a branding block.

Each branding element variable (logo, name, slogan) is only available if enabled in the block configuration.

Available variables:

  • site_logo: Logo for site as defined in Appearance or theme settings.
  • site_name: Name for site as defined in Site information settings.
  • site_slogan: Slogan for site as defined in Site information settings.

File

core/themes/bartik/templates/block--system-branding-block.html.twig
View source
  1. {% extends "block.html.twig" %}
  2. {#
  3. /**
  4. * @file
  5. * Bartik's theme implementation for a branding block.
  6. *
  7. * Each branding element variable (logo, name, slogan) is only available if
  8. * enabled in the block configuration.
  9. *
  10. * Available variables:
  11. * - site_logo: Logo for site as defined in Appearance or theme settings.
  12. * - site_name: Name for site as defined in Site information settings.
  13. * - site_slogan: Slogan for site as defined in Site information settings.
  14. */
  15. #}
  16. {% set attributes = attributes.addClass('site-branding') %}
  17. {% block content %}
  18. {% if site_logo %}
  19. <a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home" class="site-branding__logo">
  20. <img src="{{ site_logo }}" alt="{{ 'Home'|t }}" />
  21. </a>
  22. {% endif %}
  23. {% if site_name or site_slogan %}
  24. <div class="site-branding__text">
  25. {% if site_name %}
  26. <div class="site-branding__name">
  27. <a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home">{{ site_name }}</a>
  28. </div>
  29. {% endif %}
  30. {% if site_slogan %}
  31. <div class="site-branding__slogan">{{ site_slogan }}</div>
  32. {% endif %}
  33. </div>
  34. {% endif %}
  35. {% endblock %}