File size: 453 Bytes
c457f29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import streamlit as st

st.set_page_config(
    page_title="PLB-ML",
    layout="wide",
    initial_sidebar_state="expanded",
)

st.markdown(
            """
            <div style="text-align: center;">
                <h1>Pioneer League Baseball</h1>
            </div>
            """,
            unsafe_allow_html=True,
        )

with open("frontpage.md", "r") as file:
    md_content = file.read()

st.markdown(md_content, unsafe_allow_html=True)