aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Resources/views/Import/index.html.twig
blob: bd51f73078949f7d7c7766a227eddb3c98bc5ad2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% 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('import_pocket') }}">Pocket</a></li>
                <li><a href="{{ path('import_wallabag_v1') }}">Wallabag v1</a></li>
            </ul>
        </div>
    </div>
</div>
{% endblock %}