ORB/templates/default/page.tem
2018-06-30 12:51:52 +01:00

51 lines
2.2 KiB
Plaintext
Executable File

<!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]}3rdparty/jquery-ui/jquery-ui.min.css" />
<link rel="stylesheet" href="{V_[templatepath]}3rdparty/foundation/css/foundation.min.css" />
<link rel="stylesheet" href="{V_[templatepath]}3rdparty/fontawesome/css/fontawesome-all.css" />
<link rel="stylesheet" href="{V_[templatepath]}3rdparty/select2/css/select2.min.css" />
<link rel="stylesheet" href="{V_[templatepath]}3rdparty/select2-foundation/select2-foundation-theme.min.css" />
<link rel="stylesheet" href="{V_[csspath]}notebox.css" />
<link rel="stylesheet" href="{V_[csspath]}messagebox.css" />
<link rel="stylesheet" href="{V_[csspath]}foundation.mods.css" />
<link rel="stylesheet" href="{V_[csspath]}clear-input.css" />
%(extrahead)s
</head>
<body>
<!-- canvas wrapper -->
<div class="off-canvas-wrapper">
%(leftmenu)s
<!-- content wrapper -->
<div class="off-canvas-content" data-off-canvas-content>
<!-- Start top bar -->
%(userbar)s
<!-- End top bar -->
<div class="grid-container fluid">
%(pagemenu)s
<!-- Start content -->
<div class="grid-x grid-margin-x" id="content">
%(content)s
</div>
<!-- End content -->
</div>
</div><!-- content wrapper -->
</div><!-- canvas wrapper -->
<!-- Foundation and other javascript shenanigans -->
<script src="{V_[templatepath]}3rdparty/foundation/js/vendor/jquery.js"></script>
<script src="{V_[templatepath]}3rdparty/jquery-ui/jquery-ui.js"></script>
<script src="{V_[templatepath]}3rdparty/foundation/js/vendor/foundation.min.js"></script>
<script src="{V_[templatepath]}3rdparty/select2/js/select2.full.min.js"></script>
<script src="{V_[jspath]}foundation.js"></script>
<script src="{V_[jspath]}clear-input.js"></script>
<script>
%(extrajs)s
</script>
</body>
</html>