personal_site/_layouts/post_klipse.html

33 lines
934 B
HTML

<!doctype html>
<html>
<head>
{% include default_head_tags.html%}
<!-- For styling the interactive code snippets -->
<link rel="stylesheet" type="text/css" href="/assets/klipse/codemirror.css">
<script>
window.klipse_settings = {
selector_pyodide: '.language-klipse-python', // css selector for the html elements to be klipsified
codemirror_options_in: {
theme: "neo",
},
};
</script>
</head>
<body>
{% include header.html %}
<main>
<article class="h-entry">
<h1 class = "p-name">{{ page.title }}</h1>
<time class="dt-published">{{ page.date | date_to_string }}</time>
<summary style="display:none" class="p-summary">{{ page.excerpt }}</summary>
<div class="e-content">
{{ content }}
</div>
</article>
</main>
<script src="/assets/klipse/klipse_plugin.min.js"></script>
</body>
</html>