source: Dev/branches/rest-dojo-ui/client/dojox/data/demos/GoogleFeedTemplate.html @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 533 bytes
Line 
1{% load dojox.dtl.contrib.data %}
2{% bind_data items to store as google %}
3<ul>
4{% for item in google %}
5<li class="search-result">
6        <div>
7        <a href="{{item.link}}">{{item.title}}</a>
8        <div style="display:none" class="content">
9                <h2>{{item.title}}</h2>
10                {{item.content}}
11        </div>
12        </div>
13        <div class="summary">
14                {{item.summary}}
15        </div>
16        <div class="tags">
17                <!--{% if item.categories %}-->
18                        Tags:
19                        <!--{% for cat in item.categories %}-->
20                                {{cat}}
21                        <!--{% endfor %}-->
22                <!--{% endif %}-->
23        </div>
24</li>
25{% endfor %}
26</ul>
Note: See TracBrowser for help on using the repository browser.