-
Notifications
You must be signed in to change notification settings - Fork 2
/
docs_footer.html
89 lines (67 loc) · 2.7 KB
/
docs_footer.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
82
83
84
85
86
87
88
89
</div> <!-- class docs -->
<br/>
<br/>
<!-- DDG search widget,@author Juri Wornowitski,@version 3.0,@link https://www.plainlight.com/ddg --> <div id="widdget" style="width:100%;margin:10px 0;">
<style type="text/css">#widdget input {display:block;height:30px;padding:4px;outline:none;border:1px solid #8d8d8d;border-right:0;box-sizing:border-box;border-radius:3px 0 0 3px;width:calc(100% - 41px);font-size:15px;} #widdget button {float:left;cursor:pointer;width:43px;height:30px;color:#fff;background-image:linear-gradient(#72cc7f,#447e55);border:0;border-radius:0 3px 3px 0;padding:0;} #widdget button:active {background-image:linear-gradient(#239923,#005d00);} #widdget button:focus {outline:none;}
</style>
<form style="position:relative" method="get" action="https://duckduckgo.com/" target="_top">
<div style="float:right;position:absolute;top:0;right:-2px;z-index:3">
<button type="submit">🔍</button>
</div>
<input type="text" name="q" placeholder="Search ITensor C++ Docs with DuckDuckGo" />
<input type="hidden" name="sites" value="itensor.org" />
</form></div>
</div> <!-- End Content -->
</div></section>
<br/>
<br/>
<br/>
<footer class="footer">
<div class="content has-text-centered">
<p>
<a href="https://github.com/ITensor/ITensors.jl">ITensor Source on Github</a>
·
<a href="https://twitter.com/itensorlib">Twitter @ITensorLib</a>
·
<a href="https://github.com/ITensor/ITensorWebsite">Website Source on Github</a>
<br/>
© 2022 ITensor Collaboration.
</p>
</div>
</footer>
</body>
<script>
$(document).ready(function() {
// Check for click events on the navbar burger icon
$(".navbar-burger").click(function() {
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
$(".navbar-burger").toggleClass("is-active");
$(".navbar-menu").toggleClass("is-active");
});
$('.example_clicker').next().hide();
$('.example_clicker').click(
function(e)
{
/*
$(e.target).toggle(
function(e) { $(e.target).text("Show Example").stop(); },
function(e) { $(e.target).text("Hide Example").stop(); });
*/
//$(e.target).next('.highlight').slideToggle(100);
$(e.target).next().toggle();
/* Change text */
var str = $(e.target).text();
if(str.search("Show") > -1)
{
str = str.split("Show").join("Hide");
}
else
{
str = str.split("Hide").join("Show");
}
var set_text = function() { $(e.target).text(str); }
window.setTimeout(set_text, 200);
});
});
</script>
</html>