1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-12-18 13:42:17 -05:00
wallabag/app/views/index.twig

9 lines
188 B
Twig
Raw Normal View History

2013-11-26 07:33:00 -05:00
{% extends layout %}
{% block content %}
2013-12-13 11:21:50 -05:00
{% for entry in entries %}
{{ entry.id }} - {{ entry.title }}
{% endfor %}
2013-11-27 08:10:31 -05:00
<p><a href="index.php/add">poche a new link</a></p>
2013-12-13 11:21:50 -05:00
{% endblock %}