mirror of
https://github.com/nairobilug/pelican-alchemy.git
synced 2024-12-30 12:15:06 +01:00
14 lines
271 B
Python
14 lines
271 B
Python
'''
|
|
A functional, clean, responsive Pelican theme
|
|
'''
|
|
|
|
|
|
from pkg_resources import resource_filename
|
|
|
|
|
|
def path():
|
|
'''
|
|
Return path to theme templates and assets
|
|
Use this as value for THEME in Pelican settings
|
|
'''
|
|
return resource_filename(__name__, '')
|