]>
Commit | Line | Data |
---|---|---|
b7dd5f82 NL |
1 | {% extends "WallabagCoreBundle::layout.html.twig" %} |
2 | ||
0d42217e | 3 | {% block title %}{{ 'howto.page_title'|trans }}{% endblock %} |
b7dd5f82 NL |
4 | |
5 | {% block content %} | |
6 | ||
7 | <div class="row"> | |
8 | <div class="col s12"> | |
9 | <div class="card-panel settings"> | |
10 | ||
11 | <div class="row"> | |
c526f9e4 NL |
12 | <div class="div_tabs col s12"> |
13 | <ul class="tabs"> | |
14 | <li class="tab col s12 m6 l3"><a class="active" href="#set1">{{ 'howto.tab_menu.add_link'|trans }}</a></li> | |
15 | <li class="tab col s12 m6 l3"><a href="#set2">{{ 'howto.tab_menu.shortcuts'|trans }}</a></li> | |
b7dd5f82 NL |
16 | </ul> |
17 | </div> | |
18 | ||
c526f9e4 NL |
19 | <div id="set1" class="col s12"> |
20 | <p>{{ 'howto.page_description'|trans }}</p> | |
21 | ||
22 | <div class="row"> | |
b7dd5f82 | 23 | |
c526f9e4 NL |
24 | <div class="col s12"> |
25 | <a href="{{ path('new') }}">{{ 'howto.form.description'|trans }}</a> | |
26 | </div> | |
27 | ||
28 | <div class="col s12"> | |
29 | <h5>{{ 'howto.top_menu.browser_addons'|trans }}</h5> | |
30 | <ul> | |
31 | <li><a href="{{ addonsUrl.firefox }}" target="_blank">{{ 'howto.browser_addons.firefox'|trans }}</a></li> | |
32 | <li><a href="{{ addonsUrl.chrome }}" target="_blank">{{ 'howto.browser_addons.chrome'|trans }}</a></li> | |
8d064ba5 | 33 | <li><a href="{{ addonsUrl.opera }}" target="_blank">{{ 'howto.browser_addons.opera'|trans }}</a></li> |
c526f9e4 NL |
34 | </ul> |
35 | </div> | |
36 | ||
37 | <div class="col s12"> | |
38 | <h5>{{ 'howto.top_menu.mobile_apps'|trans }}</h5> | |
39 | <ul> | |
40 | <li>Android: <a href="{{ addonsUrl.f_droid }}" target="_blank">{{ 'howto.mobile_apps.android.via_f_droid'|trans }}</a> / <a href="{{ addonsUrl.google_play }}" target="_blank">{{ 'howto.mobile_apps.android.via_google_play'|trans }}</a></li> | |
41 | <li>iOS: <a href="{{ addonsUrl.ios }}" target="_blank">{{ 'howto.mobile_apps.ios'|trans }}</a></li> | |
42 | <li>Windows Phone: <a href="{{ addonsUrl.windows }}" target="_blank">{{ 'howto.mobile_apps.windows'|trans }}</a></li> | |
43 | </ul> | |
44 | </div> | |
45 | ||
46 | <div class="col s12"> | |
47 | <h5>{{ 'howto.top_menu.bookmarklet'|trans }}</h5> | |
48 | {{ 'howto.bookmarklet.description'|trans }} | |
49 | {% include '@WallabagCore/themes/common/Static/_bookmarklet.html.twig' %} | |
50 | </div> | |
51 | ||
52 | </div> | |
b7dd5f82 NL |
53 | </div> |
54 | ||
c526f9e4 NL |
55 | <div id="set2" class="col s12"> |
56 | <p>{{ 'howto.shortcuts.page_description'|trans }}</p> | |
57 | ||
58 | <h5>{{ 'howto.shortcuts.all_pages_title'|trans }}</h5> | |
b7dd5f82 | 59 | |
c526f9e4 NL |
60 | <table class="bordered"> |
61 | <thead> | |
62 | <tr> | |
63 | <th>{{ 'howto.shortcuts.shortcut'|trans }}</th> | |
64 | <th>{{ 'howto.shortcuts.action'|trans }}</th> | |
65 | </tr> | |
66 | </thead> | |
67 | ||
68 | <tbody> | |
69 | <tr> | |
70 | <td><code>g u</code></td> | |
71 | <td>{{ 'howto.shortcuts.go_unread'|trans }}</td> | |
72 | </tr> | |
73 | <tr> | |
74 | <td><code>g s</code></td> | |
75 | <td>{{ 'howto.shortcuts.go_starred'|trans }}</td> | |
76 | </tr> | |
77 | <tr> | |
78 | <td><code>g r</code></td> | |
79 | <td>{{ 'howto.shortcuts.go_archive'|trans }}</td> | |
80 | </tr> | |
81 | <tr> | |
82 | <td><code>g a</code></td> | |
83 | <td>{{ 'howto.shortcuts.go_all'|trans }}</td> | |
84 | </tr> | |
85 | <tr> | |
86 | <td><code>g t</code></td> | |
87 | <td>{{ 'howto.shortcuts.go_tags'|trans }}</td> | |
88 | </tr> | |
89 | <tr> | |
90 | <td><code>g c</code></td> | |
91 | <td>{{ 'howto.shortcuts.go_config'|trans }}</td> | |
92 | </tr> | |
93 | <tr> | |
94 | <td><code>g i</code></td> | |
95 | <td>{{ 'howto.shortcuts.go_import'|trans }}</td> | |
96 | </tr> | |
97 | <tr> | |
98 | <td><code>g d</code></td> | |
99 | <td>{{ 'howto.shortcuts.go_developers'|trans }}</td> | |
100 | </tr> | |
101 | <tr> | |
102 | <td><code>?</code></td> | |
103 | <td>{{ 'howto.shortcuts.go_howto'|trans }}</td> | |
104 | </tr> | |
105 | <tr> | |
106 | <td><code>g l</code></td> | |
107 | <td>{{ 'howto.shortcuts.go_logout'|trans }}</td> | |
108 | </tr> | |
109 | </tbody> | |
110 | </table> | |
111 | ||
112 | <h5>{{ 'howto.shortcuts.list_title'|trans }}</h5> | |
113 | ||
114 | <table class="bordered"> | |
115 | <thead> | |
116 | <tr> | |
117 | <th>{{ 'howto.shortcuts.shortcut'|trans }}</th> | |
118 | <th>{{ 'howto.shortcuts.action'|trans }}</th> | |
119 | </tr> | |
120 | </thead> | |
121 | ||
122 | <tbody> | |
123 | <tr> | |
124 | <td><code>s</code></td> | |
125 | <td>{{ 'howto.shortcuts.search'|trans }}</td> | |
126 | </tr> | |
127 | </tbody> | |
128 | </table> | |
129 | ||
130 | <h5>{{ 'howto.shortcuts.article_title'|trans }}</h5> | |
131 | ||
132 | <table class="bordered"> | |
133 | <thead> | |
134 | <tr> | |
135 | <th>{{ 'howto.shortcuts.shortcut'|trans }}</th> | |
136 | <th>{{ 'howto.shortcuts.action'|trans }}</th> | |
137 | </tr> | |
138 | </thead> | |
139 | ||
140 | <tbody> | |
141 | <tr> | |
142 | <td><code>o</code></td> | |
143 | <td>{{ 'howto.shortcuts.open_original'|trans }}</td> | |
144 | </tr> | |
145 | <tr> | |
146 | <td><code>f</code></td> | |
147 | <td>{{ 'howto.shortcuts.toggle_favorite'|trans }}</td> | |
148 | </tr> | |
149 | <tr> | |
150 | <td><code>a</code></td> | |
151 | <td>{{ 'howto.shortcuts.toggle_archive'|trans }}</td> | |
152 | </tr> | |
153 | <tr> | |
154 | <td><code>del</code></td> | |
155 | <td>{{ 'howto.shortcuts.delete'|trans }}</td> | |
156 | </tr> | |
157 | </tbody> | |
158 | </table> | |
159 | ||
160 | <h5>{{ 'howto.shortcuts.material_title'|trans }}</h5> | |
161 | ||
162 | <table class="bordered"> | |
163 | <thead> | |
164 | <tr> | |
165 | <th>{{ 'howto.shortcuts.shortcut'|trans }}</th> | |
166 | <th>{{ 'howto.shortcuts.action'|trans }}</th> | |
167 | </tr> | |
168 | </thead> | |
169 | ||
170 | <tbody> | |
171 | <tr> | |
172 | <td><code>g n</code></td> | |
173 | <td>{{ 'howto.shortcuts.add_link'|trans }}</td> | |
174 | </tr> | |
175 | <tr> | |
176 | <td><code>esc</code></td> | |
177 | <td>{{ 'howto.shortcuts.hide_form'|trans }}</td> | |
178 | </tr> | |
179 | <tr> | |
180 | <td><code>← →</code></td> | |
181 | <td>{{ 'howto.shortcuts.arrows_navigation'|trans }}</td> | |
182 | </tr> | |
183 | <tr> | |
184 | <td><code>enter</code></td> | |
185 | <td>{{ 'howto.shortcuts.open_article'|trans }}</td> | |
186 | </tr> | |
187 | </tbody> | |
188 | </table> | |
189 | </div> | |
8d064ba5 | 190 | |
b7dd5f82 NL |
191 | </div> |
192 | </div> | |
193 | </div> | |
194 | {% endblock %} |