website/template.html

22 lines
356 B
HTML
Raw Normal View History

2022-04-16 14:40:41 +00:00
<!DOCTYPE html>
2022-04-16 08:09:53 +00:00
<html>
<head>
<title>__PAGE TITLE__</title>
<!--Style stuff -->
2022-04-16 14:40:41 +00:00
<link rel="stylesheet" type="text/css" href="default_style.css" media="all">
2022-04-16 08:09:53 +00:00
</head>
<body>
<!--header>__PAGE HEADER__</header-->
2022-04-16 14:40:41 +00:00
<h1>
2022-04-16 08:09:53 +00:00
This is the actual page title!
</h1>
2022-04-16 14:40:41 +00:00
<div>
<p>
And some paragraphs here
</p>
</div>
2022-04-16 08:09:53 +00:00
</body>
</html>