ORB/templates/default/page.tem

31 lines
1.0 KiB
Plaintext
Raw Normal View History

2016-10-16 21:37:27 +01:00
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>%(title)s</title>
<link rel="stylesheet" href="{V_[templatepath]}foundation/css/foundation.min.css" />
<link rel="stylesheet" href="{V_[csspath]}notebox.css" />
<link rel="stylesheet" href="{V_[csspath]}foundation.mods.css" />
%(extrahead)s
</head>
<body>
<!-- Start top bar -->
%(userbar)s
<!-- End top bar -->
<br />
<!-- Start content -->
<div class="row" id="content">
%(content)s
</div>
<!-- End content -->
<!-- Foundation and other javascript shenanigans -->
<script src="{V_[templatepath]}foundation/js/vendor/jquery.js"></script>
<script src="{V_[templatepath]}foundation/js/vendor/foundation.min.js"></script>
<script>
$(document).foundation();
%(extrajs)s
</script>
</body>
</html>