]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/ImportBundle/Resources/views/Import/index.html.twig
Merge pull request #2616 from mathieui/doc-https-links
[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 4
be2c55de
NL
5{% block messages %}
6 {{ render(controller("WallabagImportBundle:Import:checkQueue")) }}
7
8 {{ parent() }}
9{% endblock %}
10
d51b38ed 11{% block content %}
d51b38ed
NL
12<div class="row">
13 <div class="col s12">
14 <div class="card-panel settings">
ca08d02f
JB
15 {% include 'WallabagImportBundle:Import:_information.html.twig' %}
16
0d42217e 17 {{ 'import.page_description'|trans }}
d51b38ed 18 <ul>
7019c7cf
JB
19 {% for import in imports %}
20 <li>
21 <h5>{{ import.name }}</h5>
ae669126 22 <blockquote>{{ import.description|trans|raw }}</blockquote>
0d42217e 23 <p><a class="waves-effect waves-light btn" href="{{ path(import.url) }}">{{ 'import.action.import_contents'|trans }}</a></p>
7019c7cf
JB
24 </li>
25 {% endfor %}
d51b38ed
NL
26 </ul>
27 </div>
28 </div>
29</div>
30{% endblock %}