1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-30 00:10:31 +02:00

Slim Framework integration #118 #117

- base.html updates
This commit is contained in:
Awilum
2019-05-31 17:14:47 +03:00
parent b9876a5ad8
commit 4a51153407

View File

@@ -170,6 +170,18 @@
</nav>
{% endif %}
{% if is_current_path('admin.entries.index') %}
<div class="entry-editor-heading">
{% for part in parts %}
{% set i = i - 1 %}
{% if (part != last) %}
<a href="{{ base_url() }}/admin/entries?id={{ (parts|slice(0, -i))|join('/') }}"> / {{ part }}</a>
{% else %}
/ {{ part }}
{% endif %}
{% endfor %}
</div>
{% endif %}
{% if is_current_path('admin.templates.index') or
is_current_path('admin.templates.edit') or