forked from mirrors/thatmattlove-hyperglass
🎨 Break render into separate functions
This commit is contained in:
parent
58bd6c17d0
commit
bc074971a2
1 changed files with 6 additions and 0 deletions
|
|
@ -1,6 +1,11 @@
|
|||
"""
|
||||
Renders Jinja2 & Sass templates for use by the front end application
|
||||
"""
|
||||
|
||||
from hyperglass.render.html import render_html
|
||||
from hyperglass.render.webassets import render_assets
|
||||
|
||||
'''
|
||||
# Standard Library Imports
|
||||
from pathlib import Path
|
||||
|
||||
|
|
@ -216,3 +221,4 @@ def css():
|
|||
except sass.CompileError as sassy:
|
||||
logger.error(f"Error compiling Sass in file {scss_file}.")
|
||||
raise HyperglassError(sassy)
|
||||
'''
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue