bootstrap5_admin-1.0.1/templates/block/block--system-branding-block.html.twig
templates/block/block--system-branding-block.html.twig
{% extends "block.html.twig" %}
{#
/**
* @file
* Theme override 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.
*/
#}
{% block content %}
<div class="navbar-brand d-flex align-items-center">
{% if site_logo %}
<a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home" class="site-logo d-block me-2">
<img src="{{ site_logo }}" alt="{{ 'Home'|t }}" fetchpriority="high"/>
</a>
{% endif %}
{% if site_name or site_slogan %}
<div class="name-and-slogan">
{% if site_name %}
<a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home" class="site-title link-dark link-offset-2 link-underline-opacity-0 link-underline-opacity-100-hover">
{{ site_name }}
</a>
{% endif %}
{% if site_slogan %}
<div class="site-slogan fs-6">{{ site_slogan }}</div>
{% endif %}
</div>
{% endif %}
</div>
{% endblock %}
