aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig
blob: 3507b654c30f06ae5105814f19d8484476882f2d (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
{% extends "WallabagCoreBundle::layout.html.twig" %}

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

{% block content %}
<div class="row">
    <div class="col s12">
        <div class="card-panel settings">

            <div class="row">
                <h3>Welcome to the wallabag API</h3>

                <h4>Documentation</h4>

                <ul>
                    <li><a href="{{ path('howto-firstapp') }}">How to create my first application</a></li>
                    <li><a href="{{ path('nelmio_api_doc_index') }}">View full API documentation</a></li>
                </ul>

                <h4>My clients</h4>
                <ul>
                    <li><a href="{{ path('create_client') }}">Create a new client</a></li>
                </ul>

            </div>

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


{% endblock %}