22 lines
522 B
Smarty
22 lines
522 B
Smarty
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>%title%</title>
|
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<header>
|
|
<h1>%title%</h1>
|
|
</header>
|
|
<article class="content">
|
|
%content%
|
|
</article>
|
|
<footer>
|
|
<p>Page generated on %date%</p>
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
</html>
|