2023-10-02 05:35:02 -04:00
|
|
|
extends ../layout
|
|
|
|
|
|
|
|
block vars
|
|
|
|
- var suppressNavbar = true
|
|
|
|
- var suppressFooter = true
|
|
|
|
- var suppressSkipToContent = true
|
2023-11-27 06:26:06 -05:00
|
|
|
- var deferScripts = true
|
2023-10-02 05:35:02 -04:00
|
|
|
- metadata.robotsNoindexNofollow = true
|
|
|
|
|
|
|
|
block entrypointVar
|
|
|
|
- entrypoint = 'pages/ide'
|
|
|
|
|
|
|
|
block content
|
|
|
|
main#ide-root
|
2023-10-16 07:10:43 -04:00
|
|
|
.loading-screen
|
|
|
|
.loading-screen-brand-container
|
|
|
|
.loading-screen-brand(style="height: 20%;")
|
|
|
|
h3.loading-screen-label #{translate("loading")}
|
|
|
|
span.loading-screen-ellip .
|
|
|
|
span.loading-screen-ellip .
|
|
|
|
span.loading-screen-ellip .
|
2023-10-02 05:35:02 -04:00
|
|
|
|
|
|
|
block append meta
|
|
|
|
include ./editor/meta
|
|
|
|
|
|
|
|
block prepend foot-scripts
|
|
|
|
each file in (useOpenTelemetry ? entrypointScripts("tracing") : [])
|
2023-11-27 06:26:06 -05:00
|
|
|
script(type="text/javascript", nonce=scriptNonce, src=file, defer=deferScripts)
|
|
|
|
script(type="text/javascript", nonce=scriptNonce, src=(wsUrl || '/socket.io') + '/socket.io.js', defer=deferScripts)
|