-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (42 loc) · 2.04 KB
/
index.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
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<title>Hello, world!</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="" />
<link href="assets/plugins/bootstrap/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/css/home/style.css" />
<link rel="stylesheet" type="text/css" href="assets/css/home/style.responsive.css" />
</head>
<body>
<div id="loader-wrapper" class="bg-white position-fixed top-0 z-3 w-100 h-100 text-center">
<div class="spinner-border mt-5" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<div class="d-flex flex-column row-gap-5 align-items-center w-100">
<h1>{{helloWorld}}</h1>
<h1>1 + 1 = {{num(1+1)}}</h1>
<div class="d-flex">
<h1>{{calculateText}} = </h1>
<h1>{{num(calculate)}}</h1>
</div>
<a class="btn btn-primary" onclick="changeHelloWorldText()">Change Hello World Text ( with NMB Interactive
plugin)</a>
<img src="{{attr(firstImg)}}" width="100" height="100" alt="Cat" draggable="false">
<img src="assets/img/clouds.jpg" width="776" height="484" draggable="false" alt="Clouds">
</div>
<div id="cookie-notice" class="position-fixed bottom-0 w-100 p-2 text-bg-dark">
<p>This website uses cookies so that we can provide you with the best website experience. By clicking “I Accept” you
acknowledge the use of cookies and to our <a href="#"><u>Privacy Policy</u></a>.</p>
<button type="button" id="i-accept" class="btn btn-primary">I Accept</button>
</div>
<script src="assets/plugins/jquery/jquery.min.js"></script>
<script src="assets/plugins/bootstrap/bootstrap.min.js"></script>
<script src="assets/js/cookie-notice/cookie.notice.js"></script>
<script src="assets/js/window/window.js"></script>
<script id="nmb-html-boiler-plate-js" src="assets/js/home/home.js"></script>
<script src="assets/plugins/nmb-html-boiler-plate/nmb-interactive-js/nmb.interactive.min.js"></script>
</body>
</html>