8 lines
225 B
HTML
8 lines
225 B
HTML
{% load dojox.dtl.contrib.data %}
|
|
{% bind_data items to store as google %}
|
|
{% for item in google %}
|
|
<span class="search-result">
|
|
<a href="{{item.unescapedUrl}}">{{item.titleNoFormatting}}</a>
|
|
</span>
|
|
{% endfor %}
|