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">
<form id="searchform" method="get" action="/search">
<div>
<input type="text" name="keywords" id="s" size="15" />
<br />
<input name="submit" type="submit" value="Search" />
</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>