~kvik/ugh

0e2998444cd1ae8a2e5af0c7642927bbe9d98e03 — kvik 3 years ago 50d1e1e
Add templates
3 files changed, 14 insertions(+), 0 deletions(-)

A templates/body.html
A templates/head.html
A templates/page.html
A templates/body.html => templates/body.html +1 -0
@@ 0,0 1,1 @@
$body

A templates/head.html => templates/head.html +4 -0
@@ 0,0 1,4 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta name=viewport content="width=device-width, initial-scale=1"> 
<title>$title</title>

A templates/page.html => templates/page.html +9 -0
@@ 0,0 1,9 @@
<!DOCTYPE html>
<html lang="$language">
	<head>
		$head
	</head>
	<body>
		$body
	</body>
</html>