Spaces:
Sleeping
Sleeping
| # -*- coding: utf-8 -*- | |
| """ | |
| Created on Tue Mar 21 09:40:57 2023 | |
| @author: BorowyP | |
| """ | |
| import panel as pn | |
| pn.extension(sizing_mode="stretch_width") | |
| home_link_content= '''<a href="https://paulborowy-20230303-multiple-panel.hf.space" target="_blank">Startseite</a>''' | |
| temp_air_link_content = '''<a href="https://holzdeko-lufttemperatur.hf.space" target="_blank">Lufttemperatur</a>''' | |
| hum_air_link_content = '''<a href="https://holzdeko-luftfeuchte.hf.space" target="_blank">Luftfeuchte</a>''' | |
| nied_link_content = '''<a href="https://holzdeko-niederschlag.hf.space" target="_blank">Niederschlag</a>''' | |
| temp_soil_link_content = '''<a href="https://holzdeko-bodentemperatur.hf.space" target="_blank">Bodentemperatur</a>''' | |
| hum_soil_link_content = '''<a href="https://holzdeko-bodenfeuchte.hf.space" target="_blank">Bodenfeuchte</a>''' | |
| hemisfere_link_content = '''<a href="https://holzdeko-hemisfere.hf.space" target="_blank">Hemisfere</a>''' | |
| streu_link_content = '''<a href="https://holzdeko-streufall.hf.space" target="_blank">Streufall</a>''' | |
| masseverlust_link_content = '''<a href="https://holzdeko-masseverlust.hf.space" target="_blank">Masseverlust</a>''' | |
| home_link = pn.panel(home_link_content) | |
| temp_air_link = pn.panel(temp_air_link_content) | |
| hum_air_link = pn.panel(hum_air_link_content) | |
| nied_link = pn.panel(nied_link_content) | |
| temp_soil_link = pn.panel(temp_soil_link_content) | |
| hum_soil_link = pn.panel(hum_soil_link_content) | |
| hemisfere_link = pn.panel(hemisfere_link_content) | |
| streu_link = pn.panel(streu_link_content) | |
| masseverlust_link = pn.panel(masseverlust_link_content) | |
| menu_sidebar_link_col = pn.Column( | |
| home_link, | |
| temp_air_link, | |
| hum_air_link, | |
| nied_link, | |
| temp_soil_link, | |
| hum_soil_link, | |
| hemisfere_link, | |
| streu_link, | |
| masseverlust_link | |
| ) | |
| template = pn.template.FastListTemplate( | |
| #title='sidebar_menu', | |
| sidebar=[menu_sidebar_link_col | |
| ] | |
| #main=[], | |
| #accent_base_color="#00613a", | |
| #header_background="#00613a" | |
| ) | |
| template.servable(); |