word-games-theme 1.0.0 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/_data/footer/en/data.json +16 -0
  3. data/_data/header/en/data.json +16 -0
  4. data/_data/wordgames/en/4_letter_words_with_these_letters_and_a_blank.json +63 -1
  5. data/_data/wordgames/en/feature_certain_positions.json +10 -0
  6. data/_data/wordgames/en/find-words-that-start-with-the-letters.json +10 -0
  7. data/_data/wordgames/en/french-word-unscrambler.json +61 -0
  8. data/_data/wordgames/en/german-word-unscrambler.json +61 -0
  9. data/_data/wordgames/en/italian-word-unscrambler.json +61 -0
  10. data/_data/wordgames/en/root.json +11 -0
  11. data/_data/wordgames/en/spanish-word-unscrambler.json +61 -0
  12. data/_data/wordleSolver/en/data.json +10 -0
  13. data/_includes/adBlocker/adBlocker.html +136 -0
  14. data/_includes/find-words-in-certain-positions/words-in-certain-positions.html +1 -1
  15. data/_includes/head/index.html +5 -0
  16. data/_includes/howto.html +63 -0
  17. data/_includes/script.html +3 -0
  18. data/_includes/section/commonPage.html +5 -2
  19. data/_includes/section/feature.html +19 -2
  20. data/_includes/section/home.html +6 -3
  21. data/_includes/section/home2.html +5 -2
  22. data/_includes/section/news.html +9 -0
  23. data/_includes/section/recent_posts.html +43 -0
  24. data/_includes/wordle-solver/wordle-solver.html +1 -1
  25. data/_layouts/autogencontent.html +1 -0
  26. data/_layouts/blog.html +1 -0
  27. data/_layouts/default.html +30 -0
  28. data/_layouts/other-lang-scrabble.html +170 -0
  29. data/_layouts/page.html +5 -2
  30. data/_layouts/post.html +1 -0
  31. data/_layouts/tools.html +1 -0
  32. data/_layouts/wordMeaning.html +4 -1
  33. data/_layouts/xyzpages.html +2 -0
  34. data/assets/css/adBlocker.css +232 -0
  35. data/assets/css/advancedFilter.css +2 -1
  36. data/assets/css/config.css +17 -0
  37. data/assets/css/home.css +3 -3
  38. data/assets/css/news.css +2 -2
  39. data/assets/css/style.css +76 -1
  40. data/assets/css/wordGroup.css +15 -0
  41. data/assets/css/wordScrabble.css +4 -0
  42. data/assets/images/abp.svg +41 -0
  43. data/assets/images/adblock.svg +266 -0
  44. data/assets/images/uo.svg +41 -0
  45. data/assets/js/X-letter.js +60 -47
  46. data/assets/js/adBlocker.js +36 -0
  47. data/assets/js/other-lang-wordScrabble.js +534 -0
  48. data/assets/js/wordScrabble.js +19 -4
  49. data/assets/js/wordleSolver.js +6 -6
  50. data/assets/js/words-starting-with.js +24 -4
  51. metadata +17 -2
@@ -0,0 +1,63 @@
1
+ <!-- how to section -->
2
+ {%- if dataToShow.HOW_TO_CONTENT -%}
3
+ <section class="how-to-section">
4
+ <div class="feature">
5
+ <h5 class="title">{{dataToShow.howto}}</h5>
6
+ </div>
7
+ <div class="container">
8
+ <div class="row pt-5 justify-content-center">
9
+ {% if site.MonumetricID %}
10
+ <div class="col-md-4 order-0 ">
11
+ {%- if dataToShow.HOW_TO_CONTENT.logoImageUrl -%}
12
+ <div class="how-to-img-wrapper ">
13
+ <img class="how-to-leftimg" height="180px" width="300px"
14
+ src="{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}" loading="lazy"
15
+ alt="{{dataToShow.HOW_TO_CONTENT.logoImageAlt | default: 'how to image' }}">
16
+ </div>
17
+ {%- endif -%}
18
+ </div>
19
+ <div class="col-md-4 order-1">
20
+ <div class="how-to-right">
21
+ <h3 class="how-to-title">{{dataToShow.HOW_TO_CONTENT.heading | replace: "$variable",
22
+ page.value}}</h3>
23
+ <ol class="how-to-list">
24
+ {% for data in dataToShow.HOW_TO_CONTENT.steps %}
25
+ <li id="step{{forloop.index}}" class="how-to-list-item">
26
+ <span>{{forloop.index}}.</span>{{data |
27
+ replace: "$variable",
28
+ page.value}}
29
+ </li>
30
+ {% endfor %}
31
+ </ol>
32
+ </div>
33
+ </div>
34
+ {%- else -%}
35
+ <div class="col-md-6 order-0 ">
36
+ {%- if dataToShow.HOW_TO_CONTENT.logoImageUrl -%}
37
+ <div class="how-to-img-wrapper ">
38
+ <img class="how-to-leftimg" height="180px" width="300px"
39
+ src="{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}" loading="lazy"
40
+ alt="{{dataToShow.HOW_TO_CONTENT.logoImageAlt | default: 'how to image' }}">
41
+ </div>
42
+ {%- endif -%}
43
+ </div>
44
+ <div class="col-md-6 order-1">
45
+ <div class="how-to-right">
46
+ <h3 class="how-to-title">{{dataToShow.HOW_TO_CONTENT.heading | replace: "$variable",
47
+ page.value}}</h3>
48
+ <ol class="how-to-list">
49
+ {% for data in dataToShow.HOW_TO_CONTENT.steps %}
50
+ <li id="step{{forloop.index}}" class="how-to-list-item">
51
+ <span>{{forloop.index}}.</span>{{data |
52
+ replace: "$variable",
53
+ page.value}}
54
+ </li>
55
+ {% endfor %}
56
+ </ol>
57
+ </div>
58
+ </div>
59
+ {% endif %}
60
+ </div>
61
+ </div>
62
+ </section>
63
+ {%- endif -%}
@@ -15,4 +15,7 @@
15
15
  {%- for item in scriptData.jscdns -%}
16
16
  {{item}}
17
17
  {%- endfor -%}
18
+ {%- endif -%}
19
+ {%- if site.show_allow_ad_blocker_pop and site.MonumetricID -%}
20
+ <script defer delay="../assets/js/adBlocker.js"></script>
18
21
  {%- endif -%}
@@ -9,7 +9,7 @@
9
9
  <!-- <header class="container" id="resultHeader"> -->
10
10
  <!-- navigation startss -->
11
11
  <nav class="result_navbar_section navbar-expand-lg navbar-dark" style="background-color: #fff;">
12
- <a href="/" title="{{dataToShow.tooltip}}" style="position: absolute; top:6px">
12
+ <a href="/" title="{{dataToShow.tooltip}}" style="position: absolute; top:5px">
13
13
  <img src="{{ site.favicon | relative_url }}" alt="{{site.name}}" style="width:35px; height:35px;">
14
14
  </a>
15
15
  <div class="container" id="containerWd">
@@ -19,11 +19,14 @@
19
19
  {{dataToShow.h1}}</h1>
20
20
  </div>
21
21
  <div class="serachSection2">
22
- <div class="position-relative serachBox">
22
+ <div class="position-relative serachBox mt-4">
23
23
  <form action="" id='form'>
24
24
  <input style="border-radius: {{CustomColor.inputFieldBorder}}" type="text"
25
25
  placeholder="Enter up to 15 letters?" class="txtBox resultPageTxtBox" value='' name="search"
26
26
  maxlength="15" value required autocomplete="off">
27
+ <div class="letter-close-button-commonPage">
28
+ <i class="ltr-cls-btn-commonPage bi bi-x-circle-fill"></i>
29
+ </div>
27
30
  <input
28
31
  style="border-radius: {{CustomColor.inputFieldBorder}}; background-color: {{CustomColor.inputButtonBg}};"
29
32
  type="submit" class="serachBtn resultPageSearchBtn" id="serach" value>
@@ -19,8 +19,9 @@
19
19
  <div class="container">
20
20
  <!--class earlier= col-xl-9 col-lg-12-->
21
21
  <div class="row text-center features_data">
22
+ {% if site.MonumetricID %}
22
23
  {% for entry in dataToShow.featureList %}
23
- <div class="col-lg-6 col-md-6 my-3">
24
+ <div class="col-md-8 my-3 mx-auto">
24
25
  <div class="card-body h-100">
25
26
  <img src="{{ entry.fa_class }}" width="25px"></img>
26
27
  <h5 class="card-title">
@@ -31,7 +32,23 @@
31
32
  </div>
32
33
  </div>
33
34
  {% endfor %}
35
+ {%- else -%}
36
+ {% for entry in dataToShow.featureList %}
37
+ <div class="col-lg-4 col-md-6 my-3">
38
+ <div class="card-body h-100">
39
+ <img src="{{ entry.fa_class }}" width="25px"></img>
40
+ <h5 class="card-title">
41
+ {{ entry.feature_heading }}
42
+ </h5>
43
+ <p class="card-text" style="color: #a7a7a7;
44
+ font-size: 14px;">{{ entry.feature_text}}</p>
45
+ </div>
46
+ </div>
47
+ {% endfor %}
48
+ {% endif %}
34
49
  </div>
35
50
  </div>
36
51
  </div>
37
- </div>
52
+ </div>
53
+
54
+ {%- include howto.html -%}
@@ -27,6 +27,10 @@
27
27
  <span class="focus-border">
28
28
  <i></i>
29
29
  </span>
30
+
31
+ <div class="letter-close-button">
32
+ <i class="ltr-cls-btn bi bi-x-circle-fill"></i>
33
+ </div>
30
34
  </div>
31
35
  <input style="border-radius: {{CustomColor.inputFieldBorder}};
32
36
  background-color: {{CustomColor.inputButtonBg}};" type="submit" class="serachBtn" id="serach"
@@ -108,7 +112,6 @@
108
112
  </div>
109
113
 
110
114
  <script>
111
-
112
115
  const clearFilter = document.querySelector('.clearFilter')
113
116
  let startsWith = document.getElementById('startsWith')
114
117
  let mustInclude = document.getElementById('mustInclude')
@@ -128,13 +131,13 @@
128
131
  const advancedFilter = document.querySelector('.advancedFilter')
129
132
  const fillterWrapper = document.querySelector('.fillterWrapper')
130
133
  advancedFilter.addEventListener('click', () => {
131
- fillterWrapper.classList.toggle('active')
134
+ fillterWrapper.classList.toggle('actives')
132
135
  fillterWrapper.classList.remove('hide')
133
136
  })
134
137
 
135
138
  const close = document.querySelector('.times')
136
139
  close.addEventListener('click', () => {
137
- fillterWrapper.classList.remove('active')
140
+ fillterWrapper.classList.remove('actives')
138
141
  fillterWrapper.classList.add('hide')
139
142
  })
140
143
 
@@ -26,6 +26,9 @@
26
26
  <span class="focus-border">
27
27
  <i></i>
28
28
  </span>
29
+ <div class="letter-close-button">
30
+ <i class="ltr-cls-btn bi bi-x-circle-fill"></i>
31
+ </div>
29
32
  </div>
30
33
 
31
34
  <input
@@ -118,13 +121,13 @@
118
121
  const advancedFilter = document.querySelector('.advancedFilter')
119
122
  const fillterWrapper = document.querySelector('.fillterWrapper')
120
123
  advancedFilter.addEventListener('click', () => {
121
- fillterWrapper.classList.toggle('active')
124
+ fillterWrapper.classList.toggle('actives')
122
125
  fillterWrapper.classList.remove('hide')
123
126
  })
124
127
 
125
128
  const close = document.querySelector('.times')
126
129
  close.addEventListener('click', () => {
127
- fillterWrapper.classList.remove('active')
130
+ fillterWrapper.classList.remove('actives')
128
131
  fillterWrapper.classList.add('hide')
129
132
  })
130
133
  </script>
@@ -20,12 +20,21 @@
20
20
  <div class="container">
21
21
  <!--class earlier=col-xl-9 col-lg-12 -->
22
22
  <div class="row my-xl-0">
23
+ {% if site.MonumetricID %}
23
24
  {% for entry in dataToShow.faqList %}
24
25
  <div class="col-md-8 mx-auto pt-5">
26
+ <p class="meduim-text2 text-center mb-0">{{entry.Question}}</p>
27
+ <p class="meduim-text text-center mb-0">{{entry.Answer}}</p>
28
+ </div>
29
+ {% endfor %}
30
+ {%- else -%}
31
+ {% for entry in dataToShow.faqList %}
32
+ <div class="col-md-6 pt-5">
25
33
  <p class="meduim-text2 mb-0">{{entry.Question}}</p>
26
34
  <p class="meduim-text mb-0">{{entry.Answer}}</p>
27
35
  </div>
28
36
  {% endfor %}
37
+ {% endif %}
29
38
  </div>
30
39
  </div>
31
40
  </div>
@@ -3,6 +3,48 @@
3
3
  {%- if site.posts.size>0 -%}
4
4
  <h1 class="related_post_heading">Recent Posts</h1>
5
5
  {%- endif -%}
6
+ {% if site.MonumetricID %}
7
+ <div class="row">
8
+ <div class="col-lg-8 mx-auto">
9
+ <div class="row">
10
+ {% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
11
+ {% for post in posts limit: 6%}
12
+ {%- include /authors/authors.html -%}
13
+ <div class="col-lg-6 col-md-6 mb-4 card-group">
14
+ <div class="card h-100">
15
+ <a href="{{ post.url }}">
16
+ <img src="{{ post.image }}" class="card-img-top" height="215px" width="100%"
17
+ loading="lazy" alt="">
18
+ </a>
19
+ <div class="card-body">
20
+ <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
21
+ <h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
22
+ </a>
23
+ </div>
24
+ <div class="card-footer bg-white">
25
+ <div class="wrapfooter">
26
+ {% if post.author %}
27
+ <span class="meta-footer-thumb">
28
+ <img class="author-thumb" loading="lazy" src="{{image}}" alt="{{ authorName }}">
29
+ </span>
30
+ {% endif %}
31
+ <span class="author-meta">
32
+ <span class="post-name">
33
+ <a target="_blank" href="/blog">{{authorName}}</a>
34
+ </span><br>
35
+ <span class="post-date">{{post.date | date_to_string }}</span>
36
+ </span>
37
+ <span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
38
+ title="Read Story">Read More</a></span>
39
+ </div>
40
+ </div>
41
+ </div>
42
+ </div>
43
+ {% endfor %}
44
+ </div>
45
+ </div>
46
+ </div>
47
+ {%- else -%}
6
48
  <div class="row">
7
49
  {% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
8
50
  {% for post in posts limit: 6%}
@@ -39,5 +81,6 @@
39
81
  </div>
40
82
  {% endfor %}
41
83
  </div>
84
+ {% endif %}
42
85
  </div>
43
86
  </div>
@@ -50,7 +50,7 @@
50
50
  </div>
51
51
  <div class="form-group">
52
52
  <label for="greyLetters" class="my-1 p-0 wordleSolver-label">Enter letters in grey below</label>
53
- <div class="col-md-6 p-0 wrapper">
53
+ <div class="col-md-6 p-0 wrapper_div">
54
54
  <div class="d-flex">
55
55
  <input type="text" class="wordleSolver-field greyLetters form-control px-5" maxlength="1"
56
56
  id="eleven" value="" autocomplete="off" tabIndex="10" onkeyup="move(this,'twelve')">
@@ -6,6 +6,7 @@
6
6
 
7
7
  {{content}}
8
8
 
9
+ {% include adBlocker/adBlocker.html %}
9
10
  {% include autogenerated/footer.html %}
10
11
 
11
12
  {%- include script.html -%}
data/_layouts/blog.html CHANGED
@@ -62,6 +62,7 @@
62
62
  </section>
63
63
  <!-- {%- include section/alertbar.html -%} -->
64
64
 
65
+ {% include adBlocker/adBlocker.html %}
65
66
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
66
67
  {% include script.html %}
67
68
  <script src="{{ '/assets/js/TopScroll.js' | relative_url }}"></script>
@@ -19,6 +19,8 @@
19
19
 
20
20
  {% include section/feature.html %}
21
21
 
22
+
23
+
22
24
  {%- if dataToShow.faqList -%}
23
25
  {%- if dataToShow.faqList.first.Question !='' -%}
24
26
  {% include section/news.html %}
@@ -30,6 +32,7 @@
30
32
  {%- include WordPointTables/table.html -%}
31
33
  {%- endif -%}
32
34
 
35
+ {% include adBlocker/adBlocker.html %}
33
36
  {%- include share/socialshare.html -%}
34
37
  {%- include Rating/rating.html -%}
35
38
 
@@ -53,11 +56,33 @@
53
56
  {%- include footer/index.html -%}
54
57
 
55
58
  {%- include script.html -%}
59
+
60
+
61
+ {%- if page.language -%}
56
62
  <script>
63
+ const select_dropDown2 = document.querySelector(".select_dropDown2")
64
+ select_dropDown2[0].style.display = "none"
65
+ select_dropDown2[1].style.display = "none"
66
+ select_dropDown2[2].style.display = "none"
67
+ select_dropDown2[3].style.display = "none"
68
+ </script>
69
+ {%- endif -%}
70
+
71
+
72
+ <script>
73
+ let letterCloseButton = document.querySelector('.letter-close-button')
57
74
  let txtBox = document.querySelector('.txtBox')
58
75
  let focusBorder = document.querySelector('.focus-border')
59
76
  txtBox.focus()
77
+
60
78
  txtBox.addEventListener('input', (e) => {
79
+ if (e.target.value === "") {
80
+ letterCloseButton.classList.remove("close_ltr_icon")
81
+ }
82
+ else {
83
+ letterCloseButton.classList.add("close_ltr_icon")
84
+ }
85
+
61
86
  focusBorder.classList.remove("focus-border")
62
87
  e.target.value = e.target.value.replace(/[^a-zA-Z? ]/g, "")
63
88
  let rangeOfBlankTile = '{{ page.blanktilerange }}'
@@ -73,6 +98,11 @@
73
98
  e.target.value = e.target.value.replace(/\?$/, '')
74
99
  }
75
100
  })
101
+
102
+ letterCloseButton.addEventListener("click", () => {
103
+ txtBox.value = ""
104
+ letterCloseButton.classList.remove("close_ltr_icon")
105
+ })
76
106
  </script>
77
107
  </body>
78
108
 
@@ -0,0 +1,170 @@
1
+ <!-- {% assign file = page.fileName %}
2
+ {% assign lang = page.lang %}
3
+ {% assign folder = page.folderName %}
4
+ {% assign homeData= site.data[folder][lang][file] %} -->
5
+
6
+ <!-- <!DOCTYPE html>
7
+ <html lang="en">
8
+
9
+ {%- include head/index.html -%}
10
+
11
+ <body>
12
+ <link rel="stylesheet" href="../assets/css/wordScrabble.css">
13
+ {%- include header/index.html -%}
14
+
15
+ {%- if homeData.h1 or homeData.h2 -%}
16
+ <div class="tools_headings">
17
+ <div class="container">
18
+ <div class="pageHeading text-center">
19
+ <h1 class="heading pb-0 m-0">{{homeData.h1}}</h1>
20
+ {%- if homeData.h2 != '' -%}
21
+ <h2>{{homeData.h2}}</h2>
22
+ {%- endif -%}
23
+ </div>
24
+ </div>
25
+ </div>
26
+ {%- endif -%}
27
+
28
+ <div class="tools-feature">
29
+ <div class="container" id="containerWd">
30
+ <section class="result_sticky_nav">
31
+ <div class="serachSection2">
32
+ <div class="position-relative serachBox">
33
+ <form action="" id='form'>
34
+ <input style="border-radius: {{CustomColor.inputFieldBorder}}" type="text"
35
+ placeholder="Enter up to 15 letters?" class="txtBox resultPageTxtBox" value='' name="search"
36
+ maxlength="15" value required autocomplete="off">
37
+ <input
38
+ style="border-radius: {{CustomColor.inputFieldBorder}}; background-color: {{CustomColor.inputButtonBg}};"
39
+ type="submit" class="serachBtn resultPageSearchBtn" id="serach" value>
40
+ {%- include filterWords/index.html -%}
41
+ <div class="wrapper_dropDown mt-3 d-flex justify-content-end" style="gap:10px;">
42
+ <div class="Advancedbtn" style="position: relative;" onclick="myFunction()">
43
+ <span class="filter_count" style="display: none;"></span>
44
+ <input type="button" value="Advanced Filter" class="filterButton">
45
+ <div class="angle-arrow"></div>
46
+ </div>
47
+ <div id="sort-select">
48
+ <select class="form-select sort-select" id="select_dropDown">
49
+ <option selected="true" hidden id="alpha" value="alpha">Sort by</option>
50
+ <option id="alpha" value="alpha">A-Z</option>
51
+ <option id="alpha" value="alpha">Z-A</option>
52
+ <option id="alpha" value="alpha">Points</option> -->
53
+ <!-- </select>
54
+ </div>
55
+ </div>
56
+ <div class="fillterWrapper hide">
57
+ <div class="text-right times" style="cursor: pointer; margin-top:-15px;">
58
+ <img src="../../assets/images/window-close.png" alt="" width="15px">
59
+
60
+ </div>
61
+ <div class="startsWith same">
62
+ <label data-toggle="tooltip" data-placement="top" title="Filter for words that starts with these letters"
63
+ for="startsWith">Starts
64
+ With</label>
65
+ <input type="text" class="filter_val" id="startsWith" placeholder="Prefix" value="" name="prefix">
66
+ </div>
67
+ <div class="mustInclude same">
68
+ <label for="mustInclude" data-toggle="tooltip" data-placement="top"
69
+ title=" Words that contain letters in this order(ab)">Must Contains </label>
70
+ <input type="text" class="filter_val" id="mustInclude" placeholder="Contains" name="contains" value="">
71
+ </div>
72
+ <div class="endsWith same">
73
+ <label for="endsWith" data-toggle="tooltip" data-placement="top"
74
+ title="Filter for words that ends with these letters">End With</label>
75
+ <input type="text" class="filter_val" id="endsWith" placeholder="Suffix" name="suffix" value="">
76
+ </div>
77
+ <div class="exculdeWith same">
78
+ <label data-toggle="tooltip" data-placement="top" title="Only words that not contain the letters you enter here"
79
+ for="exculdeWith">Exculde</label>
80
+ <br>
81
+ <input type="text" class="filter_val" id="exculdeWith" placeholder="Exculde" value="" name="exculde">
82
+ </div>
83
+ <div class="inculdeWith same">
84
+ <label data-toggle="tooltip" data-placement="top" title="Only words that contain the letters you enter here"
85
+ for="inculdeWith">Include</label>
86
+ <br>
87
+ <input type="text" class="filter_val" id="inculdeWith" placeholder="Include" value="" name="include">
88
+ </div>
89
+ <div class="wordLength same">
90
+ <label data-toggle="tooltip" data-placement="top" title="Filter for words with this length"
91
+ for="wordLength">Word Length </label>
92
+ <input type="text" class="filter_val" id="wordLength" placeholder="Length" name="length" value="">
93
+ </div>
94
+
95
+ <div style="margin-top: 1.2rem; gap:5px" class="d-flex w-100">
96
+ <input type="button" value="Clear" class="clearFilter btn-info text-white" style="background-color:#808080;">
97
+ <input type="submit" value="Apply" class="btn-info text-white" style="background: #808080" id="applyfilter">
98
+ </div>
99
+ </div>
100
+ </form>
101
+ </div>
102
+ </div>
103
+ </section>
104
+ </div>
105
+ <div class="container" id="containerWd">
106
+ {% include section/wordGroup.html %}
107
+ </div>
108
+ close commonPage as LandingPage -->
109
+ <!-- <link rel="stylesheet" href="{{ '/assets/css/advancedFilter.css' | relative_url }}">
110
+
111
+ </div> -->
112
+
113
+ <!-- {% include section/feature.html %}
114
+
115
+ {%- if dataToShow.faqList -%}
116
+ {%- if dataToShow.faqList.first.Question !='' -%}
117
+ {% include section/news.html %}
118
+ {% endif %}
119
+ {% endif %} -->
120
+
121
+
122
+ <!-- {%- include Rating/rating.html -%}
123
+
124
+ {%- assign langen = "en" -%}
125
+ {%- if site.data[folder][langen][file].categories -%}
126
+ {% assign categories= site.data[folder][langen][file].categories %}
127
+ {%- else -%}
128
+ {% assign categories= page.categories %}
129
+ {%- endif -%}
130
+ {%- if site.data[folder][langen][file].tags -%}
131
+ {% assign tags= site.data[folder][langen][file].tags %}
132
+ {%- else -%}
133
+ {% assign tags= page.tags %}
134
+ {%- endif -%}
135
+ {%- if categories.size> 0 or tags.size>0-%}
136
+ {%- include section/related_categories_post.html -%}
137
+ {%- else -%}
138
+ {%- include section/recent_posts.html -%}
139
+ {% endif %}
140
+
141
+
142
+ {%- include footer/index.html -%}
143
+
144
+ {%- include script.html -%}
145
+ <script>
146
+ const clearFilter = document.querySelector('.clearFilter')
147
+
148
+ clearFilter.addEventListener('click', () => {
149
+ startsWith.value = ''
150
+ mustInclude.value = ''
151
+ endsWith.value = ''
152
+ exculdeWith.value = ''
153
+ inculdeWith.value = ''
154
+ wordLength.value = ''
155
+ document.getElementById("applyfilter").click();
156
+ })
157
+ const fillterWrapper = document.querySelector('.fillterWrapper')
158
+ function myFunction() {
159
+ fillterWrapper.classList.toggle('hide')
160
+ }
161
+ const close = document.querySelector('.times')
162
+ close.addEventListener('click', () => {
163
+ fillterWrapper.classList.add('hide')
164
+ })
165
+
166
+ </script>
167
+ <script src="../assets/js/other-lang-wordScrabble.js" crossorigin></script>
168
+ </body>
169
+
170
+ </html> -->
data/_layouts/page.html CHANGED
@@ -58,10 +58,13 @@
58
58
  {%- include script.html -%}
59
59
 
60
60
 
61
-
62
- {%- if page.tool != 'words-that-start-with-the-letters' -%}
61
+ {%- if page.language -%}
62
+ <script data-language="{{page.language}}" src="../assets/js/other-lang-wordScrabble.js" crossorigin></script>
63
+ {%- elsif page.tool != 'words-that-start-with-the-letters' -%}
63
64
  <script data-url="{{site.url}}" data-range="{{page.blanktilerange}}" src="/assets/js/wordScrabble.js"></script>
64
65
  {%- endif -%}
66
+
67
+
65
68
  </body>
66
69
 
67
70
  </html>
data/_layouts/post.html CHANGED
@@ -130,6 +130,7 @@
130
130
  </div>
131
131
  </div>
132
132
  </section>
133
+ {% include adBlocker/adBlocker.html %}
133
134
  {%- include section/count.html -%}
134
135
  <!-- {%- include section/alertbar.html -%} -->
135
136
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
data/_layouts/tools.html CHANGED
@@ -36,6 +36,7 @@
36
36
  {% endif %}
37
37
  {% endif %}
38
38
 
39
+ {% include adBlocker/adBlocker.html %}
39
40
 
40
41
  {%- include Rating/rating.html -%}
41
42
 
@@ -120,7 +120,8 @@
120
120
  <div class="container p-0" id="defintions" style="margin-top: 100px;">
121
121
  <h3><b>Defintion(s)</b></h3>
122
122
  <br>
123
- <span id="loaderMeaning" style="font-size: 20px">Loading &nbsp; </span><div class="spinner-border" id="loaderMeaning1"></div>
123
+ <span id="loaderMeaning" style="font-size: 20px">Loading &nbsp; </span>
124
+ <div class="spinner-border" id="loaderMeaning1"></div>
124
125
  <h2 id="err" style="display: none;">No Definition Found!</h2>
125
126
  <h4 id="noun" style="display: none;"><b>Noun</b></h4>
126
127
  <h4 id="verb" style="display: none;"><b>Verb</b></h4>
@@ -147,6 +148,8 @@
147
148
  {%- include section/recent_posts.html -%}
148
149
  {% endif %}
149
150
 
151
+
152
+ {% include adBlocker/adBlocker.html %}
150
153
  {%- include footer/index.html -%}
151
154
 
152
155
  {%- include script.html -%}
@@ -91,6 +91,8 @@
91
91
 
92
92
  {%- include share/socialshare.html -%}
93
93
 
94
+ {% include adBlocker/adBlocker.html %}
95
+
94
96
  {% include xyzpages/xyzFooter.html %}
95
97
 
96
98
  {%- include script.html -%}