-
Notifications
You must be signed in to change notification settings - Fork 263
/
layout.tmpl
64 lines (53 loc) · 1.82 KB
/
layout.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: <?js= title ?></title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
<style>
/* Hide the deprecation notice on the home page so we don't double up */
body.home blockquote:nth-of-type(1), body.home hr:nth-of-type(1) {
display: none;
}
/* Tidy headings */
section h1 {
margin-left: 0;
}
#deprecation-notice {
background-color: #fff9e3;
border: 1px solid #ff9900;
border-radius: 5px;
color: #333;
margin: 20px;
padding: 10px 20px;
font-family: Arial;
}
</style>
</head>
<body class="<?js= title.toLowerCase() ?>">
<div id="main">
<div id="deprecation-notice">
<strong>The JS Buy SDK is deprecated as of January, 2025.</strong> For more information, please see the <a href="https://github.com/Shopify/js-buy-sdk/blob/main/README.md" target="_blank">README</a>.
</div>
<?js if(title !== "Home") { ?>
<h1 class="page-title"><?js= title ?></h1>
<?js } ?>
<?js= content ?>
</div>
<nav>
<?js= this.nav ?>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc <?js= env.version.number ?></a><?js if(env.conf.templates && env.conf.templates.default && env.conf.templates.default.includeDate !== false) { ?> on <?js= (new Date()) ?><?js } ?>
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html>