Changeset 685
- Timestamp:
- 06/16/08 15:32:48 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
oss/headstock/headstock/example/microblog/design/default/templates/header.mako
r682 r685 9 9 <link rel="stylesheet" type="text/css" href="/css/reset-fonts-grids.css" /> 10 10 <link rel="stylesheet" type="text/css" href="/css/style.css" media="screen" /> 11 <link rel="service" type="application/atomsvc+xml" href="/service" /> 12 <link rel="alternate" type="application/atom+xml" href="/profile/feed" /> 13 %if collection is not UNDEFINED: 14 <link rel="alternate" type="application/atom+xml" href="${collection.get_base_edit_uri()}/feed" /> 15 %endif 11 16 </script> 12 17 </head> oss/headstock/headstock/example/microblog/design/default/templates/userindex.mako
r684 r685 10 10 <div id="bd"> 11 11 <div id="yui-main"> 12 % for member in collection.iter_members(0, 10):12 %if member is not UNDEFINED and member: 13 13 <div class="bubble"> 14 14 <blockquote> … … 18 18 on ${format_date(str(member.atom.entry.published))}</cite> 19 19 </div> 20 % endfor20 %endif 21 21 </div> 22 22 </div>
