1
0
mirror of https://github.com/moparisthebest/wallabag synced 2025-02-22 05:41:50 -05:00
wallabag/app/views/add.twig

12 lines
256 B
Twig
Raw Normal View History

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