Files
compiler-explorer/views/noscript/layout.pug
Patrick Quist 32aadc90e7 [#RandomThingsNobodyAskedFor] Noscript pages (#2120)
* hello world again

* alt texts for sponsor icons

* lintfixes

* moved noscript alongside normal views and things

* language listitems

* offer link to noscript version when needed

* filter fixes and add execution output to text output

* reuse more things, add special css, support filters and execution to noscript

* bugfix

* bugfixes

* add icons because why not

* main sponsor urls

* support noscript z links

* start of better mobile view in noscript mode

* move files to noscript folder, fixes

* try to run script in mobile

* script works now

* refactoring

* scale textarea when theres css

* fix sponsorlink

* hide hidden compilers

* duplicate change from trunk
2020-08-29 21:33:37 +02:00

30 lines
676 B
Plaintext

- var noscript = true
doctype html
html(lang="en")
head
block meta
include ../meta.pug
block styles
link(href=require("noscript.css") rel="stylesheet")
link(href=require("vendor.css") rel="stylesheet")
link(href=require("main.css") rel="stylesheet")
style#theme
block scripts
if mobileViewer
script(src=require("vendor.js"))
script(src=require("runtime.js"))
script(src=require("noscript.js"))
body(class=extraBodyClass)
block header
include header.pug
include languages.pug
block content
#root
block footer
include footer.pug