This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
old-scribeengine/scribeengine/templates/sidebar.mako

31 lines
1.0 KiB
Plaintext
Raw Normal View History

2010-01-15 20:55:30 +00:00
<div id="sidebar">
<ul>
<li id="search">
2010-02-18 07:02:46 +00:00
<form id="searchform" method="get" action="/search">
2010-01-15 20:55:30 +00:00
<div>
2010-02-17 21:10:21 +00:00
<input type="text" name="q" id="s" size="15" />
2010-01-15 20:55:30 +00:00
<br />
2010-02-17 21:10:21 +00:00
<input type="submit" value="Search" />
2010-01-15 20:55:30 +00:00
</div>
</form>
</li>
<li id="calendar">
<h2>Calendar</h2>
<div id="calendar_wrap">
<%include file="/calendar.mako"/>
</div>
</li>
% if len(c.categories) > 0:
<li>
<h2>Categories</h2>
<ul>
% for category in c.categories:
<li><a href="${h.url_for(controller='category', action=category.url)}" title="${category.name}">${category.name}</a> (${len(category.posts)}) </li>
2010-01-15 20:55:30 +00:00
% endfor
</ul>
</li>
% endif
</ul>
<div style="clear: both; height: 40px;">&nbsp;</div>
</div>