hf-search / streamlit_app.py
nouamanetazi's picture
nouamanetazi HF staff
initial commit
dc1b8a3
raw
history blame
858 Bytes
import streamlit as st
from pages import search_engine_page, document_page
if "selected_record" not in st.session_state:
st.session_state["selected_record"] = None
def set_record(record):
st.session_state["selected_record"] = record
if not st.session_state["selected_record"]: # search engine page
search_engine_page()
else: # a record has been selected
document_page()
st.markdown(
"""<style>
a:link , a:visited{
color: blue;
background-color: transparent;
text-decoration: underline;
}
a:hover, a:active {
color: red;
background-color: transparent;
text-decoration: underline;
}
.footer {
# position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: white;
color: black;
text-align: center;
}
</style>
<div class="footer">
<p>Made with ❤️ by <b>Nouamane Tazi</b></p>
</div>
""",
unsafe_allow_html=True,
)