-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
65 lines (64 loc) · 2.94 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<pug src="src/pug/head.pug" />
<meta property="og:image" content="https://mugshotbot.com/m/LBFNwaXU">
<meta property="twitter:card" content="summary_large_image">
<link rel="stylesheet" href="src/scss/style.scss">
</head>
<body>
<!-- card template -->
<pug src="src/pug/templates/word.template.pug" />
<!-- <pug src="src/pug/index.pug" /> -->
<div class="container-fluid">
<div class="container">
<!-- search bar -->
<div class="row">
<header class="mt-5">
<section class="col-12">
<div class="input-group mb-3">
<div class="form-floating">
<input type="text" class="form-control" id="search_input" placeholder="English word">
<label for="search_input">English word</label>
</div>
<button class="btn border" type="button" id="search_btn"><i class="fa-solid fa-magnifying-glass"></i></button>
<div id="queryProcessText" class="form-text ms-2 w-100"></div>
</div>
</section>
<section class="col-12 mt-5 text-center">
<a class="pulse rounded-circle d-inline-block " href="https://github.com/Silent-Watcher/dictionary" target="_blank">
<lottie-player src="https://assets1.lottiefiles.com/private_files/lf30_1ldonjtk.json" background="transparent" speed=".9" style="width: 90px; height: 90px" loop="" autoplay=""></lottie-player></a>
</section>
</header>
</div>
<!-- api link -->
<div class="row">
<p class="text-center mt-5">Data provided by <a id="api_link" class="text-decoration-none fw-bold" href="https://dictionaryapi.dev/" target="_blank">dictionaryapi.dev</a></p>
</div>
<!-- main word content -->
<div class="row mt-5">
<main class="col-12 col-lg-10 offset-lg-1" id="word_info_wrapper">
<div class="row" id="api_response_wrapper">
</div>
</main>
</div>
<!-- footer -->
<div class="row">
<footer>
<p class="text-center mt-4">made with 🧡 and ☕</p>
</footer>
</div>
</div>
</div>
<audio id="audio" src=""></audio>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/kursor.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js"></script>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"
></script>
<script type="module" src="src/js/main.js"></script>
</html>