aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Resources/views/Import/index.html.twig
blob: fda21f2da25f05951685d9a1282b79452b3711ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "WallabagCoreBundle::layout.html.twig" %}
{% block title %}{% trans %}import{% endtrans %}{% endblock %}

{% block content %}

<div class="row">
    <div class="col s12">
        <div class="card-panel settings">
            {% trans %}Welcome on wallabag importer. Please select your previous service that you want to migrate.{% endtrans %}
            <ul>
                <li><a href="{{ path('pocket_import') }}">Pocket</a></li>
            </ul>
        </div>
    </div>
</div>
{% endblock %}