-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathdata.html
109 lines (106 loc) · 3.01 KB
/
data.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{% extends 'cosmos/header.html' %}
{% block head %}
<title>"cosmos-search</title>
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/sunburst.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
td.hljs-ln-numbers {
text-align: center;
color: #ccc;
border-right: 20px solid #000000;
border-spacing: 10px;
vertical-align: top;
padding: 100px;
margin: 100px;
}
td.hljs-ln-code {
padding: 100px;
margin: 100px;
}
.tool{
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.white{
background-color: #edeff2;
border-right: 20px solid #f8f9fa;
color:#1b1e21;
}
.tool .tooltiptext {
visibility: hidden;
width: 120px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -60px;
opacity: 0;
transition: opacity 0.3s;
}
.tool .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
.tool:focus .tooltiptext {
visibility: visible;
opacity: 1;
}
</style>
{% endblock %}
{% block body %}
<div class="row">
<div class="col-xl-7 ">
<h5>
{% for items in path%}
{{ items }}/
{% endfor %}
</h5>
</div>
<div class="col-xl-4">
<a href="https://discourse.opengenus.org" target="_blank"><button type="button" class="btn btn-info">Ask any questions</button></a>
<button type="button" id='theme_button' class="btn btn-success">Editor theme</button>
</div>
<div class="col-xl-1">
<button type="button" name="button" class="btn btn-light tool" onclick="getValue()">
<i class="fa fa-clipboard"></i>
<span class="tooltiptext">Copied</span>
</button>
</div>
</div>
<pre class="language">
<code id='black'>
{{code}}
</code>
</pre>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlightjs-line-numbers.js/2.3.0/highlightjs-line-numbers.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script>hljs.initLineNumbersOnLoad();</script>
<script>
function getValue(){
var select = document.getElementById("select");
var copy = select.innerHTML;
var createtag = $('<textarea>').val(copy).appendTo('body').select();
document.execCommand('copy');
createtag.remove();
}
</script>
<script>
$('#theme_button').click(function(){
$('#black').toggleClass('white');
});
</script>
{% endblock %}