aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/quickstart.html.twig
blob: 03754d3897c141421dce11775d217c7b363d945a (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{% extends "WallabagCoreBundle::layout.html.twig" %}

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

{% block content %}

    <div class="row">
        <div class="col s12">
            <div class="card-panel settings">

                <div class="row">
                    <h3>{% trans %}Welcome to wallabag!{% endtrans %}</h3>
                    <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>
                        <li><a href="{{ path('config') }}#set5">{% trans %}Write rules to automatically tag your articles{% endtrans %}</a></li>
                    </ul>
                    {% if is_granted('ROLE_SUPER_ADMIN') %}
                    <h4>{% trans %}Administration{% endtrans %}</h4>
                    <p>{% trans %}As a administrator, you have privileges on wallabag. You can:{% endtrans %}</p>
                    <ul>
                        <li><a href="{{ path('config') }}#set6">{% trans %}Create a new user{% endtrans %}</a></li>
                        <li><a href="{{ path('craue_config_settings_modify') }}#set-analytics">{% trans %}Configure analytics{% endtrans %}</a></li>
                        <li><a href="{{ path('craue_config_settings_modify') }}#set-entry">{% trans %}Enable some parameters about article sharing{% endtrans %}</a></li>
                        <li><a href="{{ path('craue_config_settings_modify') }}#set-export">{% trans %}Configure export{% endtrans %}</a></li>
                        <li><a href="{{ path('craue_config_settings_modify') }}#set-import">{% trans %}Configure import{% endtrans %}</a></li>
                    </ul>
                    {% endif %}
                    <h4>{% trans %}First steps{% endtrans %}</h4>
                    <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>
                    <h4>{% trans %}Migrate from an existing service{% endtrans %}</h4>
                    <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>
                        <li><a href="{{ path('import_wallabag_v2') }}">{% trans %}Migrate from wallabag v2{% endtrans %}</a></li>
                    </ul>
                    <h4>{% trans %}Developers{% endtrans %}</h4>
                    <ul>
                        <li><a href="{{ path('developer') }}">{% trans %}Create your third application{% endtrans %}</a></li>
                    </ul>
                    <h4>{% trans %}Full documentation{% endtrans %}</h4>
                    <ul>
                        <li><a href="http://doc.wallabag.org/en/v2/user/annotations.html">{% trans %}Annotate your article{% endtrans %}</a></li>
                        <li><a href="http://doc.wallabag.org/en/v2/user/download_articles.html">{% trans %}Convert your articles into ePUB or PDF{% endtrans %}</a></li>
                        <li><a href="http://doc.wallabag.org/en/v2/user/filters.html">{% trans %}See how you can look for an article by using search engine and filters{% endtrans %}</a></li>
                        <li><a href="http://doc.wallabag.org/en/v2/user/errors_during_fetching.html">{% trans %}What can I do if an article encounters errors during fetching?{% endtrans %}</a></li>
                        <li><a href="http://doc.wallabag.org/">{% trans %}And so many other articles!{% endtrans %}</a></li>
                    </ul>
                    <h4>{% trans %}Support{% endtrans %}</h4>
                    <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>
                </div>

            </div>
        </div>
    </div>

{% endblock %}