aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Developer/index.html.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-02-16 20:18:59 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-02-29 21:28:25 +0100
commit8a4690b6a56afd836c4d6ea7f640934fafa6c9cf (patch)
tree9feddc65dcb0ece4a5ac43783ac9f15bf73b676e /src/Wallabag/CoreBundle/Resources/views/themes/baggy/Developer/index.html.twig
parentabc329453be6381bcf4d1b0dfd9f698312ed3b16 (diff)
downloadwallabag-8a4690b6a56afd836c4d6ea7f640934fafa6c9cf.tar.gz
wallabag-8a4690b6a56afd836c4d6ea7f640934fafa6c9cf.tar.zst
wallabag-8a4690b6a56afd836c4d6ea7f640934fafa6c9cf.zip
add tests
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/baggy/Developer/index.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/baggy/Developer/index.html.twig32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Developer/index.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Developer/index.html.twig
new file mode 100644
index 00000000..b983883f
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Developer/index.html.twig
@@ -0,0 +1,32 @@
1{% extends "WallabagCoreBundle::layout.html.twig" %}
2
3{% block title %}{% trans %}Developer{% endtrans %}{% endblock %}
4
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>{% trans %}Welcome to the wallabag API{% endtrans %}</h3>
12
13 <h4>{% trans %}Documentation{% endtrans %}</h4>
14
15 <ul>
16 <li><a href="{{ path('howto-firstapp') }}">{% trans %}How to create my first application{% endtrans %}</a></li>
17 <li><a href="{{ path('nelmio_api_doc_index') }}">{% trans %}View full API documentation{% endtrans %}</a></li>
18 </ul>
19
20 <h4>{% trans %}Clients{% endtrans %}</h4>
21 <ul>
22 <li><a href="{{ path('create_client') }}">{% trans %}Create a new client{% endtrans %}</a></li>
23 </ul>
24
25 </div>
26
27 </div>
28 </div>
29</div>
30
31
32{% endblock %}