listing.tpl 448 B

1234567891011121314
  1. {% extends app.template_style ~ "/layout/layout_1_col.tpl" %}
  2. {% block content %}
  3. {% for page in pages %}
  4. {{ page.title }} -
  5. {{ page.slug }} -
  6. {{ page.created }} -
  7. {{ page.updated }} -
  8. <a href="{{ url('edit', {id: page.id}) }}">Edit</a> <a href="{{ url('delete', {id: page.id}) }}">Delete</a>
  9. {{ loop.index }}/{{ loop.length }}
  10. <br />
  11. {% endfor %}
  12. {{ pagination }}
  13. {% endblock %}