pelican/pelican/themes/simple/functions.py
Magnun Leno 5be529f668 Moved functions.py from templates to theme root
As pointed by @tcg, the functions.py file is more suited to be located
in the theme root.
2014-01-21 14:08:58 -02:00

9 lines
181 B
Python

# encoding: utf-8
__export__ = ["helperFunction"]
def helperFunction():
return "<p>I'm from a helper function!</p>"
def anotherHelper():
return "I'm not being exported!"