I have a functioning Bokeh simulation working on a Bokeh server.
I am trying to embed it into a webpage. I have my files set up how the Bokeh tutorial recommends (currently nothing in the app_hooks.py or request_handler.py files). I am following the advice on this page about Bokeh templating: https://docs.bokeh.org/en/latest/docs/user_guide/embed.html#standard-template
If I try to embed my script into anything (ie extend from an HTML file other than base), then insert blocks with the right reference into the corresponding webpage, I get the server error
jinja2.exceptions.UndefinedError: âembedâ is undefined
I assume I am missing something critical about how Bokeh interacts with webpages. Do I need to include Bokeh function definitions for embed somewhere in my files? Does anyone have advice?