They have so much in common there's little point in separating them and having to generate the same URLs in both.
45 lines
1.7 KiB
Plaintext
Executable File
45 lines
1.7 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/font-awesome.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" />
|
|
%(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 -->
|
|
<br />
|
|
<!-- Start content -->
|
|
<div class="row" id="content">
|
|
%(content)s
|
|
</div>
|
|
<!-- End content -->
|
|
|
|
</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.min.js"></script>
|
|
<script src="{V_[templatepath]}3rdparty/foundation/js/vendor/foundation.min.js"></script>
|
|
<script src="{V_[jspath]}foundation.js"></script>
|
|
<script>
|
|
%(extrajs)s
|
|
</script>
|
|
</body>
|
|
</html>
|