Update app.py
Browse files
app.py
CHANGED
@@ -289,16 +289,13 @@ class App:
|
|
289 |
|
290 |
with gr.Column(scale=2):
|
291 |
|
292 |
-
|
293 |
-
# {website_title}
|
294 |
-
"""
|
295 |
|
296 |
if website_subtitle:
|
297 |
-
|
298 |
-
|
299 |
-
"""
|
300 |
|
301 |
-
gr.Markdown(
|
302 |
|
303 |
with gr.Column(scale=4):
|
304 |
if disclaimer_show:
|
|
|
289 |
|
290 |
with gr.Column(scale=2):
|
291 |
|
292 |
+
markdown_title = f"# {website_title}"
|
|
|
|
|
293 |
|
294 |
if website_subtitle:
|
295 |
+
markdown_subtitle = f"##### {website_subtitle}"
|
296 |
+
markdown_title += markdown_subtitle
|
|
|
297 |
|
298 |
+
gr.Markdown(markdown_title,elem_id="md_project")
|
299 |
|
300 |
with gr.Column(scale=4):
|
301 |
if disclaimer_show:
|