mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-15 13:45:04 -05:00
12 lines
256 B
Twig
12 lines
256 B
Twig
{% extends layout %}
|
|
{% block title %}{{ 'entry.add'|trans }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>{{ 'entry.add'|trans }}</h2>
|
|
|
|
<form action="#" method="post">
|
|
{{ form_widget(form) }}
|
|
|
|
<input type="submit" name="submit" />
|
|
</form>
|
|
{% endblock %} |