kodeshare/src/main/kotlin/moe/kageru/kodeshare/pages/PastePage.kt
2020-05-03 20:18:13 +02:00

46 lines
1.6 KiB
Kotlin

package moe.kageru.kodeshare.pages
import io.ktor.html.HtmlContent
import kotlinx.html.*
object PastePage {
fun build(content: String, uri: String, type: String?) = HtmlContent {
head {
defaultHead("View paste $uri${type?.let { " (type $it)" } ?: ""}")
link(
rel = "stylesheet",
href = "/static/hljs.css",
type = "text/css"
)
script(src = "/static/hl.js") {}
// Show the first 3 lines in preview/embed for applications like discord, slack, or skype
meta(content = content.lines().take(3).joinToString("\n")) {
attributes["property"] = "og:description"
}
unsafe {
+"<script>hljs.initHighlightingOnLoad();</script>"
// TODO: find out how CSSBuilder.fontFace is supposed to work and use that instead
+"""<style>html { scrollbar-color: transparent transparent; }::-webkit-scrollbar { display: none; }
@font-face {
font-family: 'Hack';
src: url('/static/hack.woff2') format('woff2'), url('/static/hack.woff') format('woff');
font-weight: 400;
font-style: normal;
}</style>""".trimIndent()
}
}
body {
pre {
code(classes = type) {
+content
}
}
a("/") {
div(Css.FLOATY_CLASS) {
+"New paste"
}
}
}
}
}