Spaces:
Sleeping
Sleeping
onfarmview
commited on
Commit
·
985ceac
1
Parent(s):
9209524
first time
Browse files
app.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
import streamlit as st
|
2 |
import leafmap.foliumap as leafmap
|
|
|
3 |
|
4 |
st.set_page_config(layout="wide")
|
5 |
|
@@ -17,6 +18,28 @@ st.sidebar.markdown('<a href="mailto:[email protected]">Contact us !</a>', un
|
|
17 |
st.title("On Farm View")
|
18 |
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
# st.info("Click on the left sidebar menu to navigate to the different apps.")
|
21 |
|
22 |
# st.subheader("Timelapse of Satellite Imagery")
|
|
|
1 |
import streamlit as st
|
2 |
import leafmap.foliumap as leafmap
|
3 |
+
from streamlit.components.v1 import html
|
4 |
|
5 |
st.set_page_config(layout="wide")
|
6 |
|
|
|
18 |
st.title("On Farm View")
|
19 |
|
20 |
|
21 |
+
html(f'''<!-- Footer content -->
|
22 |
+
<p>© 2023 On Farm View. All rights reserved.</p>
|
23 |
+
<aside class="footer-right">
|
24 |
+
<!-- Histats.com (div with counter) -->
|
25 |
+
<div id="histats_counter"></div>
|
26 |
+
<!-- Histats.com START (aync)-->
|
27 |
+
<script type="text/javascript">
|
28 |
+
var _Hasync= _Hasync|| [];
|
29 |
+
_Hasync.push(['Histats.start', '1,4819636,4,29,115,60,00011111']);
|
30 |
+
_Hasync.push(['Histats.fasi', '1']);
|
31 |
+
_Hasync.push(['Histats.track_hits', '']);
|
32 |
+
(function() {
|
33 |
+
var hs = document.createElement('script'); hs.type = 'text/javascript'; hs.async = true;
|
34 |
+
hs.src = ('//s10.histats.com/js15_as.js');
|
35 |
+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(hs);
|
36 |
+
})();
|
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 |
|
45 |
# st.subheader("Timelapse of Satellite Imagery")
|