Use template for HTML

This commit is contained in:
Gilles Crettenand
2015-06-02 09:47:22 +02:00
committed by Gilles Crettenand
parent 34161ba282
commit 2a802ee5e1
2 changed files with 39 additions and 5 deletions

15
template.html Normal file
View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>BSR WebService - {{ title }}</title>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css">
</head>
<body>
{{ content }}
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min.js"></script>
</body>
</html>