ORB/templates/default/page.tem

52 lines
2.3 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" />
2019-09-28 14:00:41 +01:00
<meta name="Description" content="Online Recipe Book. A recipe book, except it's online.">
2016-10-16 21:37:27 +01:00
<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.css" />
2018-11-22 23:04:15 +00:00
<link rel="stylesheet" href="{V_[templatepath]}3rdparty/fontawesome/css/all.css" />
2018-06-30 12:51:52 +01:00
<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" />
2016-12-29 23:44:42 +00:00
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 -->
2018-05-22 00:35:52 +01:00
<div class="grid-container fluid">
%(pagemenu)s
2018-06-30 12:51:52 +01:00
<!-- Start content -->
<div class="grid-x grid-margin-x" id="content">
2016-10-16 21:37:27 +01:00
%(content)s
2018-06-30 12:51:52 +01: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>
2018-06-30 12:51:52 +01:00
<script src="{V_[templatepath]}3rdparty/jquery-ui/jquery-ui.js"></script>
2016-12-29 23:44:42 +00:00
<script src="{V_[templatepath]}3rdparty/foundation/js/vendor/foundation.min.js"></script>
2018-06-30 12:51:52 +01:00
<script src="{V_[templatepath]}3rdparty/select2/js/select2.full.min.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>