aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Static/quickstart.html.twig
blob: f57673c505e707a67c3f83c4309434132710e57d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{% extends "WallabagCoreBundle::layout.html.twig" %}

{% block title %}{% trans %}Quickstart{% endtrans %}{% endblock %}

{% block content %}

    <h2>{% trans %}Welcome on wallabag!{% endtrans %}</h2>
    <p>{% trans %}We'll accompany you to visit wallabag and show you some features which can interess you.{% endtrans %}</p>
    <p>{% trans %}Follow us!{% endtrans %}</p>
    <h4>{% trans %}Configure the application{% endtrans %}</h4>
    <ul>
        <li><a href="{{ path('config') }}">{% trans %}Change language and design{% endtrans %}</a></li>
        <li><a href="{{ path('config') }}#set2">{% trans %}Enable RSS feeds{% endtrans %}</a></li>
    </ul>
    <h3>{% trans %}First steps{% endtrans %}</h3>
    <ul>
        <li><a href="{{ path('new') }}">{% trans %}Save your first article{% endtrans %}</a></li>
        <li><a href="{{ path('unread') }}">{% trans %}And classify it!{% endtrans %}</a></li>
    </ul>
    <h3>{% trans %}Migrate from an existing service{% endtrans %}</h3>
    <p>{% trans %}You're using an other service? We'll help you to retrieve your data on wallabag.{% endtrans %}</p>
    <ul>
        <li><a href="{{ path('import_pocket') }}">{% trans %}Migrate from Pocket{% endtrans %}</a></li>
        <li><a href="{{ path('import_wallabag_v1') }}">{% trans %}Migrate from wallabag v1{% endtrans %}</a></li>
    </ul>
    <h3>{% trans %}Full documentation{% endtrans %}</h3>
    <ul>
        <li><a href="http://wallabag.readthedocs.org">{% trans %}Convert your articles into ePUB or PDF{% endtrans %}</a></li>
        <li><a href="http://wallabag.readthedocs.org">{% trans %}See how you can look for an article by using search engine and filters{% endtrans %}</a></li>
        <li><a href="http://wallabag.readthedocs.org">{% trans %}And so many other articles!{% endtrans %}</a></li>
    </ul>
    <h3>{% trans %}Support{% endtrans %}</h3>
    <p>{% trans %}If you need some help, we are here for you.{% endtrans %}</p>
    <ul>
        <li><a href="https://github.com/wallabag/wallabag/issues/">{% trans %}On GitHub{% endtrans %}</a></li>
        <li><a href="mailto:hello@wallabag.org">{% trans %}By email{% endtrans %}</a></li>
        <li><a href="https://gitter.im/wallabag/wallabag">{% trans %}On Gitter{% endtrans %}</a></li>
    </ul>

{% endblock %}