Spaces:
Runtime error
Runtime error
File size: 2,603 Bytes
94f41cc d2e5b38 28f4b4e d2e5b38 28f4b4e d2e5b38 28f4b4e d2e5b38 94f41cc d2e5b38 28f4b4e 8565080 d2e5b38 8565080 d2e5b38 9e99ac6 d2e5b38 94f41cc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
from typing import Sequence
import streamlit as st
import streamlit.components.v1 as components
with open("static/header.html", 'r', encoding='utf-8') as f:
header_html = f.read()
with open("static/header_style.css", 'r', encoding='utf-8') as f:
embeds_style_css = f.read()
with open("static/header_animate.js") as f:
header_animate_js = f.read()
with open("static/content_style.css", 'r', encoding='utf-8') as f:
content_style_css = f.read()
with open("static/meta.html", 'r', encoding='utf-8') as f:
meta_html = f.read()
with open("static/footer.html", 'r', encoding='utf-8') as f:
footer_html = f.read()
def make_header():
components.html(f"<style>{embeds_style_css}</style>{header_html}<script>{header_animate_js}</script>", height=260)
st.markdown(meta_html, unsafe_allow_html=True)
st.markdown(f"<style>{content_style_css}</style>", unsafe_allow_html=True) # apply css to the rest of the document
st.markdown(
'<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">',
unsafe_allow_html=True,
)
def make_footer():
components.html(f"<style>{embeds_style_css}</style>{footer_html}", height=110)
def content_title(title: str, vspace_before: int = 0, vspace_after: int = 0):
st.markdown(f'<center><div class="padded faded demo_title" '
f'style="padding-top: {vspace_before}px; padding-bottom: {vspace_after}px; text-align: justify;">'
f'{title}</div><center>',
unsafe_allow_html=True)
def content_text(text: str, vspace_before: int = 0, vspace_after: int = 0):
st.markdown(f'<center><div class="padded faded demo_text" '
f'style="padding-top: {vspace_before}px; padding-bottom: {vspace_after}px; text-align: justify;">'
f'{text}</div><center>',
unsafe_allow_html=True)
CITATIONS = {}
def cite(tag):
CITATIONS.setdefault(tag, len(CITATIONS) + 1)
return f" [{CITATIONS[tag]}]"
def draw_tab_selector(tabs: Sequence[str], active_tab: str):
li_items = "".join(
f"""
<li class="nav-item">
<a class="nav-link{' active' if t == active_tab else ''}" href="/?tab={t}">{t}</a>
</li>
"""
for t in tabs
)
tabs_html = f"""
<ul class="nav nav-tabs">
{li_items}
</ul>
"""
st.markdown(tabs_html, unsafe_allow_html=True)
st.markdown("<br>", unsafe_allow_html=True)
|