mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-15 21:55:09 -05:00
9 lines
188 B
Twig
9 lines
188 B
Twig
{% extends layout %}
|
|
|
|
{% block content %}
|
|
{% for entry in entries %}
|
|
{{ entry.id }} - {{ entry.title }}
|
|
{% endfor %}
|
|
<p><a href="index.php/add">poche a new link</a></p>
|
|
{% endblock %}
|