zk_html/default.tpl

23 lines
555 B
Smarty
Raw Normal View History

2020-04-09 06:55:03 +00:00
<!doctype html>
<html>
<head>
<title>%title%</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<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>
<h1>%title%</h1>
</header>
<article class="content">
%content%
</article>
<footer>
<p>Page generated on %date%</p>
</footer>
</main>
</body>
</html>