Skip to content
Snippets Groups Projects
Commit 6cdace7c authored by Mike Bayer's avatar Mike Bayer
Browse files

fixed def's

parent b8a4891a
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ ${next.body()}
</html>
<%def name="title">
<%def name="title()">
Documentation
</%def>
......
......@@ -4,7 +4,7 @@
<%inherit file="${autohandler(template, context)}"/>
<%page cached="False" cache_key="${self.filename}"/>
<%def name="style">
<%def name="style()">
${parent.style()}
<link rel="stylesheet" href="docs.css"></link>
</%def>
......
......@@ -51,12 +51,12 @@
</%def>
<%def name="formatplain" filter="plainfilter">
<%def name="formatplain()" filter="plainfilter">
${ caller.body() | h}
</%def>
<%def name="codeline" filter="trim,h">
<%def name="codeline()" filter="trim,h">
<span class="codeline">${ caller.body() }</span>
</%def>
......
......@@ -23,7 +23,7 @@
</%def>
<%def name="link" filter="trim(href, text, class_)">
<%def name="link()" filter="trim(href, text, class_)">
<a href="${ href }" ${ class_ and (('class=\"%s\"' % class_) or '')}>${ text }</a>
</%def>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment