]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/ImportBundle/Resources/views/Import/index.html.twig
Import Firefox & Chrome bookmarks into wallabag
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Resources / views / Import / index.html.twig
CommitLineData
d51b38ed 1{% extends "WallabagCoreBundle::layout.html.twig" %}
0d42217e
JB
2
3{% block title %}{{ 'import.page_title'|trans }}{% endblock %}
d51b38ed
NL
4
5{% block content %}
d51b38ed
NL
6<div class="row">
7 <div class="col s12">
8 <div class="card-panel settings">
0d42217e 9 {{ 'import.page_description'|trans }}
d51b38ed 10 <ul>
7019c7cf
JB
11 {% for import in imports %}
12 <li>
13 <h5>{{ import.name }}</h5>
ae669126 14 <blockquote>{{ import.description|trans|raw }}</blockquote>
0d42217e 15 <p><a class="waves-effect waves-light btn" href="{{ path(import.url) }}">{{ 'import.action.import_contents'|trans }}</a></p>
7019c7cf
JB
16 </li>
17 {% endfor %}
d51b38ed
NL
18 </ul>
19 </div>
20 </div>
21</div>
22{% endblock %}