ORB/templates/default/page.tem

48 lines
1.9 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>
2016-12-29 23:44:42 +00:00
<link rel="stylesheet" href="{V_[templatepath]}3rdparty/jquery-ui/jquery-ui.min.css" />
<link rel="stylesheet" href="{V_[templatepath]}3rdparty/foundation/css/foundation.min.css" />
2016-10-16 21:37:27 +01:00
<link rel="stylesheet" href="{V_[csspath]}notebox.css" />
<link rel="stylesheet" href="{V_[csspath]}messagebox.css" />
2016-10-16 21:37:27 +01:00
<link rel="stylesheet" href="{V_[csspath]}foundation.mods.css" />
2018-05-22 00:35:52 +01:00
<link rel="stylesheet" href="{V_[csspath]}clear-input.css" />
2016-10-16 21:37:27 +01:00
%(extrahead)s
</head>
<body>
2016-12-29 23:44:42 +00:00
<!-- canvas wrapper -->
<div class="off-canvas-wrapper">
%(leftmenu)s
<!-- content wrapper -->
<div class="off-canvas-content" data-off-canvas-content>
<!-- Start top bar -->
2016-10-16 21:37:27 +01:00
%(userbar)s
2016-12-29 23:44:42 +00:00
<!-- End top bar -->
<!-- Start content -->
2018-05-22 00:35:52 +01:00
<div class="grid-container fluid">
%(pagemenu)s
<div class="grid-x grid-margin-x" id="content">
2016-10-16 21:37:27 +01:00
%(content)s
2016-12-29 23:44:42 +00:00
</div>
<!-- End content -->
2018-05-22 00:35:52 +01:00
</div>
2016-12-29 23:44:42 +00:00
</div><!-- content wrapper -->
</div><!-- canvas wrapper -->
2016-10-16 21:37:27 +01:00
<!-- Foundation and other javascript shenanigans -->
2016-12-29 23:44:42 +00:00
<script src="{V_[templatepath]}3rdparty/foundation/js/vendor/jquery.js"></script>
<script src="{V_[templatepath]}3rdparty/jquery-ui/jquery-ui.min.js"></script>
<script src="{V_[templatepath]}3rdparty/foundation/js/vendor/foundation.min.js"></script>
2018-05-22 00:35:52 +01:00
<script src="{V_[templatepath]}3rdparty/fontawesome/js/fontawesome-all.js"></script>
2016-12-29 23:44:42 +00:00
<script src="{V_[jspath]}foundation.js"></script>
2018-05-22 00:35:52 +01:00
<script src="{V_[jspath]}clear-input.js"></script>
2016-10-16 21:37:27 +01:00
<script>
%(extrajs)s
</script>
</body>
</html>