|
@@ -77,8 +77,12 @@ file that was distributed with this source code.
|
|
|
<header class="header">
|
|
|
{% block logo %}
|
|
|
<a class="logo" href="{{ url('sonata_admin_dashboard') }}">
|
|
|
- {#<img src="{{ asset(admin_pool.titlelogo) }}" alt="">#}
|
|
|
- {{ admin_pool.title }}
|
|
|
+ {% if 'single_image' == admin_pool.getOption('title_mode') or 'both' == admin_pool.getOption('title_mode') %}
|
|
|
+ <img src="{{ asset(admin_pool.titlelogo) }}" alt="{{ admin_pool.title }}">{% if 'both' == admin_pool.getOption('title_mode') %} {% endif %}
|
|
|
+ {% endif %}
|
|
|
+ {% if 'single_text' == admin_pool.getOption('title_mode') or 'both' == admin_pool.getOption('title_mode') %}
|
|
|
+ {{ admin_pool.title }}
|
|
|
+ {% endif %}
|
|
|
</a>
|
|
|
{% endblock %}
|
|
|
{% block sonata_nav %}
|