Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -81,16 +81,16 @@ pptx_template = st.sidebar.radio(
|
|
81 |
)
|
82 |
|
83 |
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
|
95 |
|
96 |
def display_page_footer_content():
|
|
|
81 |
)
|
82 |
|
83 |
|
84 |
+
def display_page_header_content():
|
85 |
+
"""
|
86 |
+
Display content in the page header.
|
87 |
+
"""
|
88 |
|
89 |
+
st.title(APP_TEXT['app_name'])
|
90 |
+
st.subheader(APP_TEXT['caption'])
|
91 |
+
st.markdown(
|
92 |
+
'' # noqa: E501
|
93 |
+
)
|
94 |
|
95 |
|
96 |
def display_page_footer_content():
|