Changeset 870
- Timestamp:
- 05/22/07 08:46:05
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
SimpleBlog/branches/optimizations/skins/SimpleBlog/blog_navigation_macros.pt
r845 r870 7 7 tal:define="url string:${here/absolute_url}; 8 8 nav python:results[2]; 9 first_item python: nav[0];10 last_item python: nav[1];11 batch python: nav[2];">9 first_item python:len(nav)>0 and nav[0] or []; 10 last_item python:len(nav)>1 and nav[1] or []; 11 batch python:len(nav)>2 and nav[2] or [];"> 12 12 13 13 <span class="previous"
