main
Last change
on this file was
42bd667,
checked in by David Fuertes <dfuertes@…>, 4 years ago
|
Historial Limpio
|
-
Property mode set to
100755
|
File size:
848 bytes
|
Line | |
---|
1 | {{extend 'plugin_jqmobile/layout.html'}} |
---|
2 | |
---|
3 | {{block header}} |
---|
4 | {{if 'auth' in globals():}} |
---|
5 | {{if not auth.user:}} |
---|
6 | <a href="{{=URL()}}" data-icon="login" class="ui-btn-left">Login</a> |
---|
7 | {{else:}} |
---|
8 | <a href="{{=URL()}}" data-icon="logout" class="ui-btn-left">Logout</a> |
---|
9 | {{pass}} |
---|
10 | {{pass}} |
---|
11 | <a href="{{=URL()}}" data-icon="home" class="ui-btn-right">{{=T("Home")}}</a> |
---|
12 | {{end}} |
---|
13 | |
---|
14 | |
---|
15 | <div>Search results for tag: {{='tag'}}</div> |
---|
16 | |
---|
17 | <ul data-role="listview" data-inset="true"> |
---|
18 | {{if True:}} |
---|
19 | <li data-role='list-divider'>Pages</li> |
---|
20 | {{for child in ('dog','cat','mouse'):}} |
---|
21 | {{title = child}} |
---|
22 | <li><a href="{{=URL('index', vars=dict(title=child))}}">{{=child}}</a></li> |
---|
23 | {{pass}} |
---|
24 | {{pass}} |
---|
25 | </ul> |
---|
26 | |
---|
27 | <div> |
---|
28 | {{for tag in ('dog','cat','mouse'):}} |
---|
29 | <a data-inline="true" href={{=URL('index', vars=dict(tag=tag))}} data-role="button">{{=tag}}</a> |
---|
30 | {{pass}} |
---|
31 | </div> |
---|
32 | |
---|
33 | |
---|
34 | |
---|
Note: See
TracBrowser
for help on using the repository browser.