README / app.py
bsant576's picture
Update app.py
162a101 verified
raw
history blame contribute delete
414 Bytes
import streamlit as st
st.set_page_config(
page_title="PLB ML",
layout="wide"
)
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)