kodeshare/src/main/kotlin/moe/kageru/kodeshare/pages/PastePage.kt
2019-10-31 13:01:18 +01:00

35 lines
992 B
Kotlin

package moe.kageru.kodeshare.pages
import io.ktor.html.HtmlContent
import kotlinx.html.*
object PastePage {
fun build(content: String, type: String?) = HtmlContent {
head {
link(rel = "stylesheet", href = "/style.css", type = "text/css")
link(
rel = "stylesheet",
href = "https://p.kageru.moe/static/hljs.css",
type = "text/css"
)
script(src = "https://p.kageru.moe/static/hl.js") {}
unsafe {
+"<script>hljs.initHighlightingOnLoad();</script>"
+"<style>html{scrollbar-color: transparent transparent;}::-webkit-scrollbar{display: none;}"
}
}
body {
pre {
code(classes = type) {
+content
}
}
a("/") {
div(Css.FLOATY_CLASS) {
+"New paste"
}
}
}
}
}