-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathwebtemplate.html
81 lines (71 loc) · 2.47 KB
/
webtemplate.html
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Intel Open Volume Kernel Library</title>
<link rel="stylesheet" type="text/css" media="screen" href="stylesheet.css">
$if(highlighting-css)$
<style type="text/css">
$highlighting-css$ div.sourceCode {
overflow-x: initial;
}
</style>
$endif$
$if(select_index)$
<!-- for teaser carousel -->
<script src="scripts/jquery.min.js"></script>
<script src="scripts/popper.min.js"></script>
<script src="scripts/bootstrap.min.js"></script>
<script>
/*
* Whenever we detect a slide change event, stop playing videos,
* and reset them, and play the active video.
*/
jQuery(document).ready(function () {
jQuery('#demo').on('slid.bs.carousel', function () {
jQuery(this).find("video").each(function (i, video) {
video.pause();
video.currentTime = 0;
});
jQuery(this).find(".active video").each(function (i, video) {
video.play();
})
});
});
</script>
$endif$
</head>
<body>
<div id="header">
<div id="header-github">
<a id="forkme-banner" href="https://github.com/OpenVKL/openvkl">View on GitHub</a>
</div>
<div id="header-title">
Intel<sup>®</sup> Open Volume Kernel Library
</div>
<div id="header-navbar">
<ul>
<li$if(select_index)$ id="selected" $endif$><a href="index.html">Overview</a></li>
<li$if(select_documentation)$ id="selected" $endif$><a href="documentation.html">API Documentation</a></li>
<li$if(select_examples)$ id="selected" $endif$><a href="examples.html">Examples</a></li>
<li$if(select_downloads)$ id="selected" $endif$><a href="downloads.html">Downloads</a></li>
<li><a href="https://github.com/OpenVKL/openvkl/issues">Bugs/Issues</a></li>
<li$if(select_related_projects)$ id="selected" $endif$><a href="related_projects.html">Related Projects</a></li>
</ul>
</div>
<div id="header-spacing"></div>
</div>
<div id="content-wrap">
<div id="content">
$body$
</div>
</div>
$if(select_legal)$
$else$
<div id="footer">
© 2019-2021 Intel Corporation <a href="legal.html">Disclaimer and Legal Information</a>
<a href="https://www.intel.com/privacy">Privacy</a>
</div>
$endif$
</body>
</html>