zk_html/default.tpl

30 lines
837 B
Smarty
Raw Normal View History

2020-04-09 06:55:03 +00:00
<!doctype html>
<html>
<head>
2020-04-16 06:28:15 +00:00
<title>Zk | %title%</title>
2020-04-09 17:03:41 +00:00
<link rel="stylesheet" type="text/css" href="/style.css" />
2020-04-09 06:55:03 +00:00
<meta name="viewport" content="width=device-width" />
2020-04-09 07:35:06 +00:00
<meta charset="utf-8" />
2020-04-09 06:55:03 +00:00
</head>
<body>
<main>
<header>
2020-04-11 16:50:06 +00:00
<h1>Zk | %title%</h1>
2020-04-09 06:55:03 +00:00
</header>
<article class="content">
%content%
</article>
<footer>
<p>Page generated on %date%</p>
</footer>
</main>
2020-06-24 07:05:07 +00:00
<script type="text/javascript">
document.querySelectorAll('.tag').forEach(tag => {
let text = tag.innerText;
tag.innerText = '';
tag.innerHTML = `<a href="/tags.html#${text}">${text}</a>`;
});
</script>
2020-04-09 06:55:03 +00:00
</body>
</html>