Add logo to footer
This commit is contained in:
parent
0fa12f27ef
commit
493587e495
1 changed files with 16 additions and 0 deletions
16
agaric/templates/layout/region--footer.html.twig
Normal file
16
agaric/templates/layout/region--footer.html.twig
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{%
|
||||||
|
set classes = [
|
||||||
|
'columns',
|
||||||
|
'is-multiline',
|
||||||
|
]
|
||||||
|
%}
|
||||||
|
{% set attributes = attributes.addClass(classes) %}
|
||||||
|
|
||||||
|
{% if content %}
|
||||||
|
<div{{ attributes }}>
|
||||||
|
<div class="column footer-logo is-half">
|
||||||
|
<a href="#"><span class="icon"><i class="agc agc-logo"></i></span></a>
|
||||||
|
</div>
|
||||||
|
{{ content }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
Loading…
Reference in a new issue