forked from Github-Mirrors/canaille
37 lines
942 B
Python
37 lines
942 B
Python
![]() |
import os
|
||
|
|
||
|
import flask
|
||
|
|
||
|
try:
|
||
|
import flask_themer
|
||
|
except ImportError: # pragma: no cover
|
||
|
flask_themer = None
|
||
|
|
||
|
|
||
|
if flask_themer:
|
||
|
render_template = flask_themer.render_template
|
||
|
|
||
|
def setup_themer(app):
|
||
|
additional_themes_dir = (
|
||
|
os.path.dirname(app.config["THEME"])
|
||
|
if app.config.get("THEME") and os.path.exists(app.config["THEME"])
|
||
|
else None
|
||
|
)
|
||
|
themer = flask_themer.Themer(
|
||
|
app,
|
||
|
loaders=[flask_themer.FileSystemThemeLoader(additional_themes_dir)]
|
||
|
if additional_themes_dir
|
||
|
else None,
|
||
|
)
|
||
|
|
||
|
@themer.current_theme_loader
|
||
|
def get_current_theme():
|
||
|
# if config['THEME'] may be a theme name or an absolute path
|
||
|
return app.config.get("THEME", "default").split("/")[-1]
|
||
|
|
||
|
else: # pragma: no cover
|
||
|
render_template = flask.render_template
|
||
|
|
||
|
def setup_themer(app):
|
||
|
return
|