def apply_dark_theme(): return ( "" ) def show_page_header(title, description=None): header_html = ( "
"+ "

" + title + "

" ) if description: header_html += ( "

" + description + "

" ) header_html += "
" return header_html def show_footer(): return ( "" )