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.
22 lines
574 B
22 lines
574 B
12 months ago
|
{% extends "block.html.twig" %}
|
||
|
{#
|
||
|
/**
|
||
|
* @file
|
||
|
* Olives'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('olives/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 "@olives/../images/drupal.svg" %}
|
||
|
</span>
|
||
|
</span>
|
||
|
{% endblock %}
|