opened 04:25PM - 05 Jan 22 UTC
Thanks for contacting us! Please read and follow these instructions carefully, t…hen delete this introductory text to keep your issue easy to read. Note that the issue tracker is NOT the place for usage questions and technical assistance; post those at [Discourse](https://discourse.holoviz.org) instead. Issues without the required information below may be closed immediately.
#### ALL software version info
panel 0.12.6
bokeh 2.4.2
python 3.8
browsers = vivaldi, edge (chromium based)
#### Description of expected behavior and the observed behavior
With regard to posting in discourse https://discourse.holoviz.org/t/goldentemplate-issues/3222/4
Golden Template does not layout the components
Subsequent inspection of the HTML components revealed that the CSS and JS links have been updated for the goldentemplate layout.
#### Complete, minimal, self-contained example code that reproduces the issue
From the example here https://panel.holoviz.org/reference/templates/GoldenLayout.html
```
import panel as pn
import numpy as np
import holoviews as hv
pn.extension(sizing_mode='stretch_width')
golden = pn.template.GoldenTemplate(title='Golden Template')
xs = np.linspace(0, np.pi)
freq = pn.widgets.FloatSlider(name="Frequency", start=0, end=10, value=2)
phase = pn.widgets.FloatSlider(name="Phase", start=0, end=np.pi)
@pn.depends(freq=freq, phase=phase)
def sine(freq, phase):
return hv.Curve((xs, np.sin(xs * freq + phase))).opts(
responsive=True, min_height=400)
@pn.depends(freq=freq, phase=phase)
def cosine(freq, phase):
return hv.Curve((xs, np.cos(xs * freq + phase))).opts(
responsive=True, min_height=400)
golden.sidebar.append(freq)
golden.sidebar.append(phase)
golden.main.append(
pn.Row(
pn.Card(hv.DynamicMap(sine), title='Sine'),
pn.Card(hv.DynamicMap(cosine), title='Cosine')
)
)
golden.main.append(
pn.Row(
pn.Card(hv.DynamicMap(sine), title='Sine'),
pn.Card(hv.DynamicMap(cosine), title='Cosine')
)
)
golden.show()
```
#### Stack traceback and/or browser JavaScript console output
![image](https://user-images.githubusercontent.com/61999659/148252337-64a04c8d-41dc-4a53-a1b5-70d8c11d41ca.png)
#### Screenshots or screencasts of the bug in action
![image](https://user-images.githubusercontent.com/61999659/148252431-7694403a-5731-4d50-a25c-914d369572da.png)