onfarmview commited on
Commit
c975c5e
·
1 Parent(s): 985ceac

first time

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -17,8 +17,8 @@ st.sidebar.markdown('<a href="mailto:[email protected]">Contact us !</a>', un
17
 
18
  st.title("On Farm View")
19
 
20
-
21
- html(f'''<!-- Footer content -->
22
  <p>&copy; 2023 On Farm View. All rights reserved.</p>
23
  <aside class="footer-right">
24
  <!-- Histats.com (div with counter) -->
@@ -37,8 +37,10 @@ html(f'''<!-- Footer content -->
37
  </script>
38
  <noscript><a href="/" target="_blank"><img src="//sstatic1.histats.com/0.gif?4819636&101" alt="hit tracker" border="0"></a></noscript>
39
  <!-- Histats.com END -->
40
- </aside>''')
 
41
 
 
42
 
43
  # st.info("Click on the left sidebar menu to navigate to the different apps.")
44
 
 
17
 
18
  st.title("On Farm View")
19
 
20
+ footer_content = """
21
+ <!-- Footer content -->
22
  <p>&copy; 2023 On Farm View. All rights reserved.</p>
23
  <aside class="footer-right">
24
  <!-- Histats.com (div with counter) -->
 
37
  </script>
38
  <noscript><a href="/" target="_blank"><img src="//sstatic1.histats.com/0.gif?4819636&101" alt="hit tracker" border="0"></a></noscript>
39
  <!-- Histats.com END -->
40
+ </aside>
41
+ """
42
 
43
+ st.sidebar.markdown(footer_content, unsafe_allow_html=True)
44
 
45
  # st.info("Click on the left sidebar menu to navigate to the different apps.")
46