Commit ·
f8bfbd9
1
Parent(s): 7e99593
Update app.py
Browse files
app.py
CHANGED
|
@@ -18,9 +18,19 @@ st.write(
|
|
| 18 |
"Made in [](https://www.streamlit.io/) by [@LeeFootSEO](https://twitter.com/LeeFootSEO) / [](https://www.buymeacoffee.com/leefootseo) [Support My Work! Buy me a coffee!](https://www.buymeacoffee.com/leefootseo)"
|
| 19 |
)
|
| 20 |
|
|
|
|
| 21 |
st.title("BERT Semantic Interlinking Tool")
|
| 22 |
st.subheader("Upload a crawl file to find semantically relevant pages to interlink. (Unlimited Version)")
|
| 23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
@st.cache_data
|
| 25 |
def fetch_data():
|
| 26 |
# Code to fetch data
|
|
@@ -354,3 +364,5 @@ st.write("Fetched Data:", data)
|
|
| 354 |
if st.button('Clear Cache'):
|
| 355 |
st.caching.clear_cache()
|
| 356 |
st.write('Cache cleared!')
|
|
|
|
|
|
|
|
|
| 18 |
"Made in [](https://www.streamlit.io/) by [@LeeFootSEO](https://twitter.com/LeeFootSEO) / [](https://www.buymeacoffee.com/leefootseo) [Support My Work! Buy me a coffee!](https://www.buymeacoffee.com/leefootseo)"
|
| 19 |
)
|
| 20 |
|
| 21 |
+
|
| 22 |
st.title("BERT Semantic Interlinking Tool")
|
| 23 |
st.subheader("Upload a crawl file to find semantically relevant pages to interlink. (Unlimited Version)")
|
| 24 |
|
| 25 |
+
# Sidebar instructions
|
| 26 |
+
st.sidebar.markdown("### BERT Semantic Interlinking App")
|
| 27 |
+
st.sidebar.markdown("""
|
| 28 |
+
This tool helps you plot connections to internaal pages based on your page's data structure tags like: Title and H1
|
| 29 |
+
To use it, Upload your Screaming Frog export file "internal_html.csv". After creating an linking chart, you can download the .XLSX file by clicking button "Download BERT Interlinking Opportunities"
|
| 30 |
+
""")
|
| 31 |
+
|
| 32 |
+
st.sidebar.markdown("## Tool uploaded and maintained by: [Blazing SEO](http://blazing-seo.com/)")
|
| 33 |
+
|
| 34 |
@st.cache_data
|
| 35 |
def fetch_data():
|
| 36 |
# Code to fetch data
|
|
|
|
| 364 |
if st.button('Clear Cache'):
|
| 365 |
st.caching.clear_cache()
|
| 366 |
st.write('Cache cleared!')
|
| 367 |
+
st.sidebar.markdown("Credits")
|
| 368 |
+
st.sidebar.markdown("[@LeeFootSEO](https://twitter.com/LeeFootSEO)")
|