mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 12:54:00 -05:00
* 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
30 lines
676 B
Plaintext
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
|