added server side print format
diff --git a/website/templates/html/outer.html b/website/templates/html/outer.html
index 207c124..c46aaa7 100644
--- a/website/templates/html/outer.html
+++ b/website/templates/html/outer.html
@@ -1,8 +1,6 @@
 {% extends "html/base.html" %}
 
 {% block body %}
-	<header>
-	</header>
 	<div class="container">
 		<div class="pull-right" style="margin:4px;" id="user-tools">
 			<a id="login-link" href="login">Login</a>
diff --git a/website/templates/pages/print.html b/website/templates/pages/print.html
new file mode 100644
index 0000000..21fb9a2
--- /dev/null
+++ b/website/templates/pages/print.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+	<meta charset="utf-8">
+	<meta name="viewport" content="width=device-width, initial-scale=1.0">
+	<title>{{ doc and (doc.name + " - " + doc.doctype) or "Error" }}</title>
+	<meta name="generator" content="wnframework">	
+</head>
+<body>
+	{{ body }}
+</body>
+</html>
\ No newline at end of file