1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-15 21:55:09 -05:00
wallabag/app/views/add.twig

12 lines
256 B
Twig
Raw Normal View History

2013-11-27 08:10:31 -05:00
{% extends layout %}
2014-01-15 08:03:30 -05:00
{% block title %}{{ 'entry.add'|trans }}{% endblock %}
2013-11-27 08:10:31 -05:00
{% block content %}
<h2>{{ 'entry.add'|trans }}</h2>
2013-11-27 08:10:31 -05:00
<form action="#" method="post">
{{ form_widget(form) }}
<input type="submit" name="submit" />
</form>
{% endblock %}