Skip to content

Commit d877bba

Browse files
committed
Page update
1 parent 556246d commit d877bba

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

index.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,14 @@ Items
1111
<p>
1212

1313
<pre>
14-
{% for object in items %}
15-
{{ object | inspect }}
14+
{% for object in items | sort: 'stars' %}
15+
<dl>
16+
{% for object in objects %}
17+
<dt>Object names: {{ object }}</dt>
18+
<dd>propertyA: {{ object.propertyA }}</dd>
19+
<dd>propertyB: {{ object.propertyB }}</dd>
20+
{% endfor %}
21+
</dl>
1622
{% endfor %}
1723
</pre>
1824

0 commit comments

Comments
 (0)