create ImportController to list importers

This commit is contained in:
Nicolas Lœuillet
2015-10-23 14:45:50 +02:00
committed by Jeremy Benoist
parent 557e549db7
commit d51b38ed30
5 changed files with 49 additions and 5 deletions

View File

@ -0,0 +1,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') }}">Pocket</a></li>
</ul>
</div>
</div>
</div>
{% endblock %}