<div class="fc-breadcrumbs-container">
  <div class="fc-breadcrumbs">
    <a href="#" title="<%- _t('Root') %>" aria-label="<%- _t('Root') %>" data-path="/">
      <%= homeIcon %> /
    </a>
    <% pathParts.forEach((part, idx) => {
      if(part){
        if(idx > 0){ %>
          /
        <% } %>
        <a href="#" class="crumb" data-path="<%- part %>"><%- part %></a>
      <% }
    }); %>
  </div>
</div>

<table class="pat-datatables table table-striped table-bordered"
       data-pat-datatables="<%- datatables_options %>">
  <thead>
    <tr>
      <th class="selection"><label for="selectAllInputCheckbox" class="hiddenStructure" aria-label="<%- _t('Select all items on this page') %>"><%- _t('Select all items on this page') %></label><input id="selectAllInputCheckbox" type="checkbox" class="select-all form-check-input pat-tooltip" title="<%- _t('Select all items on this page') %>"/></th>
      <th class="title"><%- _t('Title') %></th>
      <% activeColumns.forEach((column, idx) => { %>
        <% if(column !== 'Description' && hasOwnProperty.call(availableColumns, column)) { %>
          <th><%- availableColumns[column] %></th>
        <% } %>
      <% }); %>
      <th class="actions"><%- _t("Actions") %></th>
    </tr>
  </thead>
  <tbody>
  </tbody>
</table>
