Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -610,9 +610,11 @@ def load_css() -> str:
|
|
| 610 |
css_path = BASE_DIR / "style.css"
|
| 611 |
return css_path.read_text(encoding="utf-8") if css_path.exists() else ""
|
| 612 |
|
| 613 |
-
|
| 614 |
-
|
| 615 |
-
|
|
|
|
|
|
|
| 616 |
gr.Markdown(
|
| 617 |
"# SE21 App Template\n"
|
| 618 |
"*This is an app template for SE21 students*",
|
|
|
|
| 610 |
css_path = BASE_DIR / "style.css"
|
| 611 |
return css_path.read_text(encoding="utf-8") if css_path.exists() else ""
|
| 612 |
|
| 613 |
+
css_content = load_css()
|
| 614 |
+
|
| 615 |
+
with gr.Blocks(title="AIBDM 2026 Workshop App") as demo:
|
| 616 |
+
gr.HTML(f"<style>{css_content}</style>")
|
| 617 |
+
|
| 618 |
gr.Markdown(
|
| 619 |
"# SE21 App Template\n"
|
| 620 |
"*This is an app template for SE21 students*",
|