-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.py
More file actions
42 lines (35 loc) · 1.28 KB
/
About.py
File metadata and controls
42 lines (35 loc) · 1.28 KB
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
#!/usr/bin/env python
# coding: utf-8
import streamlit as st
import os
from util.streamlit_configs import Page_layout
st.set_page_config(
page_title='Concrete Slab Design',
page_icon='👨🔬',
initial_sidebar_state="expanded",
layout="centered")
app = Page_layout(title='Concrete Slab Check',
default_session_key_values={},
hide_streamlit_footer=True,
custom_footer=None,
remove_padding_from_sides=True)
app.set_pagelayout()
with open(os.path.join('util', 'About.md'), 'r') as f:
page_content = f.read()
st.write(page_content)
st.markdown("#### Change Notes:")
with st.expander("v1.0"):
st.markdown("""
* Added one-way slab design per CSA A23.3-19, Includes:
* shear check against concrete strength
* moment check against slab bot bar strength
* crack control parameter check per CSA A23.3,cl -10.6.1""")
st.components.v1.html("""
<h3 style="font-family:courier;">Created by</h3>
<p style="font-family:courier;">
Arun Kishore<br>
Structural EIT,<br>
Associated Engineering,<br>
<a href="mailto:rpakishore@gmail.com">Mail</a> • <a href="https://www.linkedin.com/in/rpakishore/">LinkedIn</a><br>
</p>
""")