]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig
Added developer documentation
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / material / Developer / index.html.twig
CommitLineData
24152cdb
NL
1{% extends "WallabagCoreBundle::layout.html.twig" %}
2
3{% block title %}{% trans %}Developer{% endtrans %}{% endblock %}
4
5{% block content %}
b6321bed
NL
6<div class="row">
7 <div class="col s12">
8 <div class="card-panel settings">
9
10 <div class="row">
11 <h3>Welcome to the wallabag API</h3>
12
13 <h4>Documentation</h4>
14
15 <ul>
16 <li><a href="{{ path('howto-firstapp') }}">How to create my first application</a></li>
17 <li><a href="{{ path('nelmio_api_doc_index') }}">View full API documentation</a></li>
18 </ul>
19
20 <h4>My applications</h4>
21 <ul>
22 <li><a href="{{ path('create_client') }}">Create a new application</a></li>
23 <li><a href="#">See my applications</a></li>
24 </ul>
25
26 </div>
27
28 </div>
29 </div>
30</div>
24152cdb 31
24152cdb
NL
32
33{% endblock %}