I've got a Python Bottle application up and running use Mako templating. I'd like to use the webhelpers module (used in Pylons web applications) but I'm not sure how to go about doing this. I'd like to be able to do this in my mako templates:
${h.stylesheet_link("some_link_url_text")}
and have it produce the correct link HTML. But when I run this, h is undefined, as you might imagine.
How can I do this?