Newer
Older

Olav Kvittem
committed
<!DOCTYPE html>
<html lang="en">
<head id="head">
<meta charset="utf-8">
<script type="text/javascript" src="/js/jquery-ui-1.10.3/jquery-1.9.1.js"></script>
<script type="text/javascript" src="/js/jquery-ui-1.10.3/ui/jquery-ui.js"></script>
<style type="text/css" title="currentStyle">
@import "/js/jquery-ui-1.10.3/themes//mp-web/jquery-ui.css";

Olav Kvittem
committed
</style>
</head>
<body id="body">
<script>
$.get("/head-bs.html", function(data){ // header template
$('#head').append(data);
$.get("/body-bs.html", function(data){ // body template
$('#body').append(data);
$("#title-bs").html('Målepåle'); // title
$('#top-menu-bs').load("/top-menu-bs.html");
$('#body-bs').load("mp-web-bs.html"); // main body content
}, 'html' );
}, 'html' );
</script>
</body>
</html>