26 lines
934 B
HTML
26 lines
934 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Zhurnal Changelog</title>
|
||
|
<style>
|
||
|
body { background: black; color: white; font-family: sans-serif; padding: 20px; }
|
||
|
body.light { background: white; color: black; }
|
||
|
button { background: #555; color: white; border: none; padding: 5px 10px; border-radius: 5px; cursor: pointer; position: fixed; top: 10px; right: 10px; }
|
||
|
body.light button { background: #ddd; color: black; }
|
||
|
a { color: inherit; }
|
||
|
ul { padding-left: 20px; }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<button onclick="document.body.classList.toggle('light')">Toggle Theme</button>
|
||
|
<h1>Changelog</h1>
|
||
|
{{content}}
|
||
|
<p>
|
||
|
<a href="/download/json/{{hash}}">Download JSON</a> |
|
||
|
<a href="/download/md/{{hash}}">Download Markdown</a>
|
||
|
</p>
|
||
|
</body>
|
||
|
</html>
|