mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
As pointed by @tcg, the functions.py file is more suited to be located in the theme root.
9 lines
181 B
Python
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!"
|