-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtemplate.html
More file actions
102 lines (99 loc) · 4.01 KB
/
Copy pathtemplate.html
File metadata and controls
102 lines (99 loc) · 4.01 KB
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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Templates for the hackofiesta template blocks</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="/template.css">
</head>
<body class="body-bg-dark">
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<div class="navbar-nav me-auto mb-2 mb-lg-0" id="test">
<div class="d-flex justify-content-between">
<a class="nav-link other-files-name" href="#">file 1</a>
<a class="nav-link other-files-name">file 3</a>
</div>
</div>
</div>
</nav>
{% if data is defined and data|length > 0 %}
<div class="container-fluid row">
<div class="col-3 side-navigator">
<div class="col-3 side-bar-main-body">
Name of the current file
</div>
<div class="second-side-list">
Classes
</div>
<div class="third-side-list">
<ul>
<p> Class 1 </p>
<p> Class 2 </p>
<p> Class 3 </p>
<p> Class 4 </p>
</ul>
</div>
</div>
<div class="class-block col-9">
<div class="container">
<div class="d-flex flex-wrap">
<div>
<div class="d-inline-flex one-variable-block">
<p class="variable-text">int x = 5</p>
</div>
</div>
</div>
</div>
<div class="condition_loops_cover_div">
<div class="block-center-rhombus-top">
<div class="if-conditional-block-rhombus">
<p>loop</p>
</div>
</div>
<div class="block-center-rhombus-bottom">
<div class="if-conditional-block-rhombus-inverted">
<p>Conditional</p>
</div>
</div>
<div class="block-center" style="margin-top: 25px;">
<div class="if-conditional-block-triangle">
<p>some information text goes here</p>
</div>
</div>
</div>
</div>
</div>
{% else %}
<div class="container">
<div class="d-flex flex-wrap">
<div>
<div class="d-inline-flex one-variable-block">
<p class="variable-text">Please open a file from the navigation bar</p>
</div>
</div>
</div>
</div>
{% endif %}
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"crossorigin="anonymous"></script>
<script>
//let rect = document.getElementById("").getBoundingClientRect();
//rect.width; rect.height;
function scrollHorizontally(e) {
e = window.event || e;
e.preventDefault();
var delta = Math.max(-1, Math.min(1, (e.wheelDelta || e.detail)));
var scrollSpeed = 25;
e.currentTarget.scrollLeft -= (delta * scrollSpeed);
//e.srcElement.scrollLeft -= (delta * scrollSpeed);
}
// IE9, Chrome, Safari, Opera
document.getElementById("navbar").addEventListener("mousewheel", scrollHorizontally, false);
// Firefox
//document.getElementById("navbar").addEventListener("DOMMouseScroll", scrollHorizontally, false);
</script>
</body>
</html>