justpy-org / justpy

An object oriented high-level Python Web Framework that requires no frontend programming
https://justpy.io
Apache License 2.0
1.22k stars 96 forks source link

Cannot add meta tag to head of the page for mobile friendliness. #669

Closed mugiseyebrows closed 1 year ago

mugiseyebrows commented 1 year ago

Cannot figure out how to add meta tag to the head to make page mobile friendly. <meta name="viewport" content="width=device-width, initial-scale=1.0"> Please provide pointers how to do it, I didn't find anything related in documentation. If it's not possible, consider this as feature request. Thank you.

mugiseyebrows commented 1 year ago

Figured out

wp = jp.WebPage()
wp.head_html = '<meta name="viewport" content="width=device-width, initial-scale=1.0">'