giswqs commited on
Commit
27b1ecc
β€’
1 Parent(s): bd0f2de

Updated sidebar

Browse files
Files changed (2) hide show
  1. pages/4_πŸ”₯_Heatmap.py +14 -8
  2. streamlit_app.py +14 -9
pages/4_πŸ”₯_Heatmap.py CHANGED
@@ -3,15 +3,21 @@ import leafmap.foliumap as leafmap
3
 
4
  st.set_page_config(layout="wide")
5
 
6
- markdown = """
7
- Web App URL: <https://template.streamlitapp.com>
8
- GitHub Repository: <https://github.com/giswqs/streamlit-multipage-template>
9
- """
10
-
11
  st.sidebar.title("About")
12
- st.sidebar.info(markdown)
13
- logo = "https://i.imgur.com/UbOXYAU.png"
14
- st.sidebar.image(logo)
 
 
 
 
 
 
 
 
 
 
 
15
 
16
  st.title("Heatmap")
17
 
 
3
 
4
  st.set_page_config(layout="wide")
5
 
 
 
 
 
 
6
  st.sidebar.title("About")
7
+ st.sidebar.info(
8
+ """
9
+ Web App URL: <https://geospatial.streamlitapp.com>
10
+ GitHub repository: <https://github.com/giswqs/streamlit-geospatial>
11
+ """
12
+ )
13
+
14
+ st.sidebar.title("Contact")
15
+ st.sidebar.info(
16
+ """
17
+ Qiusheng Wu: <https://wetlands.io>
18
+ [GitHub](https://github.com/giswqs) | [Twitter](https://twitter.com/giswqs) | [YouTube](https://www.youtube.com/c/QiushengWu) | [LinkedIn](https://www.linkedin.com/in/qiushengwu)
19
+ """
20
+ )
21
 
22
  st.title("Heatmap")
23
 
streamlit_app.py CHANGED
@@ -3,16 +3,21 @@ import leafmap.foliumap as leafmap
3
 
4
  st.set_page_config(layout="wide")
5
 
6
- # Customize the sidebar
7
- markdown = """
8
- Web App URL: <https://template.streamlitapp.com>
9
- GitHub Repository: <https://github.com/giswqs/streamlit-multipage-template>
10
- """
11
-
12
  st.sidebar.title("About")
13
- st.sidebar.info(markdown)
14
- logo = "https://i.imgur.com/UbOXYAU.png"
15
- st.sidebar.image(logo)
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  # Customize page title
18
  st.title("Streamlit for Geospatial Applications")
 
3
 
4
  st.set_page_config(layout="wide")
5
 
 
 
 
 
 
 
6
  st.sidebar.title("About")
7
+ st.sidebar.info(
8
+ """
9
+ Web App URL: <https://geospatial.streamlitapp.com>
10
+ GitHub repository: <https://github.com/giswqs/streamlit-geospatial>
11
+ """
12
+ )
13
+
14
+ st.sidebar.title("Contact")
15
+ st.sidebar.info(
16
+ """
17
+ Qiusheng Wu: <https://wetlands.io>
18
+ [GitHub](https://github.com/giswqs) | [Twitter](https://twitter.com/giswqs) | [YouTube](https://www.youtube.com/c/QiushengWu) | [LinkedIn](https://www.linkedin.com/in/qiushengwu)
19
+ """
20
+ )
21
 
22
  # Customize page title
23
  st.title("Streamlit for Geospatial Applications")