LAP-DEV commited on
Commit
bb3499f
·
verified ·
1 Parent(s): 1d14770

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -7
app.py CHANGED
@@ -289,16 +289,13 @@ class App:
289
 
290
  with gr.Column(scale=2):
291
 
292
- markdown_text = f"""
293
- # {website_title}
294
- """
295
 
296
  if website_subtitle:
297
- markdown_text += f"""
298
- ##### {website_subtitle}
299
- """
300
 
301
- gr.Markdown(markdown_text,elem_id="md_project")
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: