<xf:foreach loop="$wikis" value="$wiki">
<xf:datarow>
<xf:cell>
<a href="{{ link('ewr-carta/pages/edit', $wiki) }}" class="dataList-cellMain" dir="auto">
<div class="dataList-mainRow">
<span style="display: inline-flex; align-items: center; padding-left: {{ $wiki.page_depth * 24 }}px;">
<xf:if is="$wiki.page_depth > 0">
<span style="display:inline-block; width:16px; margin-right:6px; color:#b0b7c3;">↳</span>
</xf:if>
<span>{$wiki.page_name}</span>
</span>
</div>
<div class="dataList-subRow" style="padding-left: {{ $wiki.page_depth * 24 + ($wiki.page_depth ? 22 : 0) }}px; color:#8a94a6;">
{$wiki.page_slug}
</div>
</a>
</xf:cell>
<xf:action href="{{ link('ewr-carta/pages/modify', $wiki) }}" overlay="true">
{$wiki.page_type}
</xf:action>
<xf:action href="{{ link('ewr-carta/pages/edit', $wiki) }}">
<xf:date time="{$wiki.page_date}" />
</xf:action>
<xf:delete href="{{ link('ewr-carta/pages/delete', $wiki) }}"
tooltip="{{ phrase('delete') }}" />
</xf:datarow>
</xf:foreach>