]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/ImportBundle/Resources/views/Import/index.html.twig
Make English welcome message more natural
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Resources / views / Import / index.html.twig
1 {% extends "WallabagCoreBundle::layout.html.twig" %}
2 {% block title %}{% trans %}Import{% endtrans %}{% endblock %}
3
4 {% block content %}
5 <div class="row">
6 <div class="col s12">
7 <div class="card-panel settings">
8 {% trans %}Welcome to wallabag importer. Please select your previous service that you want to migrate.{% endtrans %}
9 <ul>
10 {% for import in imports %}
11 <li>
12 <h5>{{ import.name }}</h5>
13 <blockquote>{{ import.description|trans }}</blockquote>
14 <p><a class="waves-effect waves-light btn" href="{{ path(import.url) }}">{% trans %}Import contents{% endtrans %}</a></p>
15 </li>
16 {% endfor %}
17 </ul>
18 </div>
19 </div>
20 </div>
21 {% endblock %}