27 lines
No EOL
740 B
HTML
27 lines
No EOL
740 B
HTML
{{$markdownFilePath := printf .OriginalReq.URL.Path}}
|
|
{{$markdownContent := include $markdownFilePath}}
|
|
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Markdown</title>
|
|
<link rel="stylesheet" href="/assets/main.css">
|
|
<link rel="stylesheet" href="/assets/github-markdown.css">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/highlight.min.js"></script>
|
|
<script>hljs.highlightAll();</script>
|
|
</head>
|
|
|
|
<body>
|
|
<script>
|
|
function themeToggle() {
|
|
var element = document.body;
|
|
element.classList.toggle("light-mode");
|
|
}
|
|
</script>
|
|
<div>
|
|
<button onclick="themeToggle()">Switch Theme</button>
|
|
{{markdown $markdownContent}}
|
|
</div>
|
|
</body>
|
|
|
|
</html> |