26 lines
746 B
Django/Jinja
26 lines
746 B
Django/Jinja
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:output method="html" omit-xml-declaration="yes" />
|
|
<xsl:template match="/*">
|
|
<xsl:text disable-output-escaping='yes'><!DOCTYPE html>
|
|
</xsl:text>
|
|
|
|
<script src="https://raw.githubusercontent.com/nodeca/js-yaml/master/dist/js-yaml.min.js"></script>
|
|
<script src="http://mozilla.github.io/nunjucks/files/nunjucks.min.js"></script>
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"/>
|
|
|
|
<title>Status Card</title>
|
|
<style type="text/css">
|
|
{{ css }}
|
|
</style>
|
|
|
|
<script type="text/html" id="yaml_data">
|
|
{{ yaml_data }}
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
// render this shit
|
|
</script>
|
|
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|