-
Notifications
You must be signed in to change notification settings - Fork 0
/
Data.html
60 lines (51 loc) · 2.28 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
<!DOCTYPE html>
<html dir="rtl">
<head>
<script src="functions.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="./index.css">
<title>All Data</title>
</head>
<body>
<div class="container pt-5 d-flex justify-content-center align-items-center flex-column">
<div class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
<a href="/RealMoney/index.html" target="_self" rel="noopener noreferrer">خانه</a>
</div>
</div>
<div class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
<a href="https://github.com/SajadJalilian/RealMoney" target="_blank"
rel="noopener noreferrer">github</a>
</div>
</div>
<div class="d-flex justify-content-between align-items-center">
<div x-data="{ data: fetchData() , rawData : '' }">
<button x-on:click="rawData = showData()" class="btn btn-primary">
نمایش تمام دادهها
</button>
<template x-if="rawData">
<pre x-text="JSON.stringify(rawData, null, 2)"></pre>
<ul>
<template x-for="item in rawData.items">
<li x-text="item.name"></li>
</template>
</ul>
</template>
</div>
</div>
</div>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-VL6DSZLQG3');
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VL6DSZLQG3"></script>
<script src="https://unpkg.com/[email protected]/dist/cdn.min.js" defer></script>
</body>
</html>