You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
577 B
21 lines
577 B
{% extends "block.html.twig" %} |
|
{# |
|
/** |
|
* @file |
|
* Olivera's theme implementation for Powered by Drupal block. |
|
* |
|
* The Powered by Drupal block is an optional link to the home page of the |
|
* Drupal project. |
|
* |
|
*/ |
|
#} |
|
{% block content %} |
|
{{ attach_library('olivera/powered-by-block') }} |
|
<span> |
|
{% trans %}Powered by{% endtrans %} |
|
<a href="https://www.drupal.org">{% trans %}Drupal{% endtrans %}</a> |
|
<span class="drupal-logo" role="img" aria-label="{{ 'Drupal Logo'|t }}"> |
|
{% include "@olivera/../images/drupal.svg" %} |
|
</span> |
|
</span> |
|
{% endblock %}
|
|
|