mirror of
https://github.com/sligter/LandPPT.git
synced 2026-09-01 15:54:37 +08:00
6153e56441
Add OAuth, community, credits, startup, export, and narration workflows while splitting oversized route and PPT service modules into dedicated components with broader regression coverage. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
260 B
Python
11 lines
260 B
Python
import traceback
|
|
from jinja2 import Environment, FileSystemLoader
|
|
|
|
env = Environment(loader=FileSystemLoader('src/landppt/web/templates'))
|
|
try:
|
|
env.get_template('pages/account/profile.html')
|
|
print('OK')
|
|
except BaseException:
|
|
traceback.print_exc()
|
|
|