aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-02-16 07:55:18 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-02-29 21:28:25 +0100
commitb6321bed7b8b8ba34e23a3d0c048f7d05ab309bf (patch)
tree14cc69975a28587cd13df20dbf2c96d8e081e165 /src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig
parent24152cdb5e48edc5128082b285736b06ebda3c82 (diff)
downloadwallabag-b6321bed7b8b8ba34e23a3d0c048f7d05ab309bf.tar.gz
wallabag-b6321bed7b8b8ba34e23a3d0c048f7d05ab309bf.tar.zst
wallabag-b6321bed7b8b8ba34e23a3d0c048f7d05ab309bf.zip
Added developer documentation
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig26
1 files changed, 25 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig
index 9e06005f..36d5c2bd 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/index.html.twig
@@ -3,7 +3,31 @@
3{% block title %}{% trans %}Developer{% endtrans %}{% endblock %} 3{% block title %}{% trans %}Developer{% endtrans %}{% endblock %}
4 4
5{% block content %} 5{% block content %}
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>
6 31
7 <a href="{{ path('create_client') }}">Create a new client</a>
8 32
9{% endblock %} 33{% endblock %}