credence-lib 0.0.6

An unfussy web server designed for straightforward authoring and scalable performance
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE HTML>
<html>
	<head>
	    <title>{{ title | safe }}</title>
		<meta charset="utf-8" />
		{# See: https://stackoverflow.com/a/13416784/849021 #}
		<link rel="icon" href="data:image/png;base64,iVBORw0KGgo=" />
	</head>
	<body>
	    {{ content | safe }}
	</body>
</html>