incorporeal-cms/incorporealcms/lib.py

8 lines
283 B
Python
Raw Normal View History

"""Miscellaneous helper functions and whatnot."""
from flask import current_app as app
def get_meta_str(key):
"""Provide the page's metadata for the specified key, or '' if unset."""
return " ".join(app.config['md'].Meta.get(key)) if app.config['md'].Meta.get(key) else ""