word-games-theme 0.9.0 → 0.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_data/blog/nav.json +1 -1
- data/_data/header/en/data.json +10 -2
- data/_data/wordgames/en/anagram_word_finder.json +2 -0
- data/_data/wordgames/en/feature_certain_positions.json +54 -0
- data/_data/wordgames/en/find-words-that-start-with-the-letters.json +54 -0
- data/_data/wordgames/en/root.json +10 -2
- data/_data/wordleSolver/en/data.json +6 -0
- data/_includes/Monumetric/Monumetric.html +48 -0
- data/_includes/autogenerated/content.html +1 -4
- data/_includes/cssfile/links.html +12 -0
- data/_includes/custom-head.html +0 -29
- data/_includes/find-words-in-certain-positions/words-in-certain-positions.html +167 -0
- data/_includes/head/index.html +3 -29
- data/_includes/header/blogHeader.html +1 -2
- data/_includes/header/index.html +1 -1
- data/_includes/script.html +16 -12
- data/_includes/section/commonPage.html +105 -101
- data/_includes/section/feature.html +1 -1
- data/_includes/section/home2.html +1 -1
- data/_includes/section/news.html +8 -7
- data/_includes/section/related_categories_post.html +155 -150
- data/_includes/section/wordGroup.html +2 -12
- data/_includes/wordle-solver/wordle-solver.html +2 -3
- data/_layouts/allpages.html +1 -6
- data/_layouts/autogencontent.html +2 -5
- data/_layouts/blog.html +1 -2
- data/_layouts/default.html +18 -21
- data/_layouts/disclaimer.html +5 -2
- data/_layouts/page.html +7 -17
- data/_layouts/page2.html +3 -18
- data/_layouts/post.html +26 -23
- data/_layouts/privacyPolicy.html +2 -1
- data/_layouts/termAndCondition.html +1 -0
- data/_layouts/{wordleSolver.html → tools.html} +18 -11
- data/_layouts/wordMeaning.html +21 -35
- data/_layouts/xyzpages.html +1 -6
- data/assets/css/advancedFilter.css +8 -0
- data/assets/css/content.css +3 -3
- data/assets/css/home.css +56 -39
- data/assets/css/news.css +2 -2
- data/assets/css/style.css +26 -7
- data/assets/css/wordGroup.css +8 -5
- data/assets/css/wordleSolver.css +8 -14
- data/assets/css/wordsInCertainPosition.css +139 -0
- data/assets/images/wordswithletters-logo.png +0 -0
- data/assets/js/X-letter.js +15 -2
- data/assets/js/wordScrabble.js +4 -1
- data/assets/js/wordleSolver.js +25 -18
- data/assets/js/words-in-certain-positions.js +200 -0
- data/assets/js/words-starting-with.js +564 -0
- metadata +11 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4516dcbe444946f9c1fbd47f4ee82033d0030ec4eddbf3a3b386dd8dcc68e1ab
|
|
4
|
+
data.tar.gz: '0683d567c3d85aefa5d9cc37baf06d524d06f233fcc8b9efd54ad27262a9f3c8'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e1c7dffec31ec1063d00a45d3e986c5bb122573ff5c86f819ac968954c1dc3db79fd4e142036c6d9f433a55a79dd983d87d442aa169fc1a94fd872ed392408e
|
|
7
|
+
data.tar.gz: 022203f3b709994333dd98140351f88d5d84e95c5d23972f5c8e70f393d3fb872966ff874fd59316ff72d9e4f6aea6a7e2186282b60cc033332faa269a65fa81
|
data/_data/blog/nav.json
CHANGED
data/_data/header/en/data.json
CHANGED
|
@@ -2,8 +2,16 @@
|
|
|
2
2
|
"tooltip": "words with letters",
|
|
3
3
|
"more": [
|
|
4
4
|
{
|
|
5
|
-
"name": "
|
|
6
|
-
"url": "/
|
|
5
|
+
"name": "Wordle Solver",
|
|
6
|
+
"url": "/wordle-solver"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"name": "Find words with letters in certain positions",
|
|
10
|
+
"url": "/find-words-with-letters-in-certain-positions"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "Find words that start with the letters",
|
|
14
|
+
"url": "find-words-that-start-with-the-letters"
|
|
7
15
|
},
|
|
8
16
|
{
|
|
9
17
|
"name": "4 letter words with these letters and a blank",
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Easiest way to find words with letters in certain positions - Wordswithletters",
|
|
3
|
+
"h1": "Find words with letters in certain positions",
|
|
4
|
+
"h2": "Enter letters at given positions below and submit",
|
|
5
|
+
"meta": "Enter letters at specific positions, press submit, and that's all you need to do to find words ",
|
|
6
|
+
"tags": "",
|
|
7
|
+
"categories": "wordle",
|
|
8
|
+
"featureNo": "02",
|
|
9
|
+
"feature_title": "Features",
|
|
10
|
+
"featureList": [
|
|
11
|
+
{
|
|
12
|
+
"feature_heading": "",
|
|
13
|
+
"feature_text": "",
|
|
14
|
+
"fa_class": "../assets/images/star.svg"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"feature_heading": "",
|
|
18
|
+
"feature_text": "",
|
|
19
|
+
"fa_class": "../assets/images/star.svg"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"feature_heading": "",
|
|
23
|
+
"feature_text": "",
|
|
24
|
+
"fa_class": "../assets/images/star.svg"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"feature_heading": "",
|
|
28
|
+
"feature_text": "",
|
|
29
|
+
"fa_class": "../assets/images/star.svg"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"feature_heading": "",
|
|
33
|
+
"feature_text": "",
|
|
34
|
+
"fa_class": "../assets/images/star.svg"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"feature_heading": "",
|
|
38
|
+
"feature_text": "",
|
|
39
|
+
"fa_class": "../assets/images/star.svg"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"faqList": [
|
|
43
|
+
{
|
|
44
|
+
"Question": "",
|
|
45
|
+
"Answer": ""
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"jsfilepaths": [
|
|
49
|
+
"../assets/js/words-in-certain-positions.js"
|
|
50
|
+
],
|
|
51
|
+
"cssfilepaths": [
|
|
52
|
+
"../assets/css/wordsInCertainPosition.css"
|
|
53
|
+
]
|
|
54
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Easiest way to find words starting with given - Wordswithletters",
|
|
3
|
+
"h1": "Find words that start with the letters",
|
|
4
|
+
"h2": "Enter letters from which words start and submit",
|
|
5
|
+
"meta": "Enter letters from which words should start, press submit, and that's all you need to do to find words starting with given letters. Easy and fast !",
|
|
6
|
+
"tags": "",
|
|
7
|
+
"categories": "wordle",
|
|
8
|
+
"featureNo": "02",
|
|
9
|
+
"feature_title": "Features",
|
|
10
|
+
"featureList": [
|
|
11
|
+
{
|
|
12
|
+
"feature_heading": "",
|
|
13
|
+
"feature_text": "",
|
|
14
|
+
"fa_class": "../assets/images/star.svg"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"feature_heading": "",
|
|
18
|
+
"feature_text": "",
|
|
19
|
+
"fa_class": "../assets/images/star.svg"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"feature_heading": "",
|
|
23
|
+
"feature_text": "",
|
|
24
|
+
"fa_class": "../assets/images/star.svg"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"feature_heading": "",
|
|
28
|
+
"feature_text": "",
|
|
29
|
+
"fa_class": "../assets/images/star.svg"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"feature_heading": "",
|
|
33
|
+
"feature_text": "",
|
|
34
|
+
"fa_class": "../assets/images/star.svg"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"feature_heading": "",
|
|
38
|
+
"feature_text": "",
|
|
39
|
+
"fa_class": "../assets/images/star.svg"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"faqList": [
|
|
43
|
+
{
|
|
44
|
+
"Question": "",
|
|
45
|
+
"Answer": ""
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"jsfilepaths": [
|
|
49
|
+
"../assets/js/words-starting-with.js"
|
|
50
|
+
],
|
|
51
|
+
"cssfilepaths": [
|
|
52
|
+
""
|
|
53
|
+
]
|
|
54
|
+
}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"title": "Word finders to help you find word with given letters.",
|
|
3
|
-
"h1": "
|
|
4
|
-
"h2": "
|
|
3
|
+
"h1": "Enter letters to create words with letters!",
|
|
4
|
+
"h2": "Enter the letters in input below",
|
|
5
|
+
"tags": "",
|
|
6
|
+
"categories": "",
|
|
5
7
|
"meta": "Use wordfinders to win any word games such as scrabble, word with friends etc.",
|
|
6
8
|
"featureNo": "02",
|
|
7
9
|
"feature_title": "Features",
|
|
@@ -70,6 +72,12 @@
|
|
|
70
72
|
"Answer": "Yes, our word finder is mobile friendly. So you can use it on your laptop, tab or smart phone also."
|
|
71
73
|
}
|
|
72
74
|
],
|
|
75
|
+
"jsfilepaths": [
|
|
76
|
+
""
|
|
77
|
+
],
|
|
78
|
+
"cssfilepaths": [
|
|
79
|
+
""
|
|
80
|
+
],
|
|
73
81
|
"aboutList": [
|
|
74
82
|
{
|
|
75
83
|
"aboutText": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Enim odio sapiente unde voluptatibus, excepturi saepe quisquam veniam architecto delectus dolor eos dolorem id itaque necessitatibus laborum cupiditate asperiores officia? Deleniti!"
|
|
@@ -1,7 +1,55 @@
|
|
|
1
1
|
{% if jekyll.environment == 'production' and site.MonumetricID %}
|
|
2
|
+
<script>
|
|
3
|
+
const autoLoadDuration = 5; //In Seconds
|
|
4
|
+
const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
|
|
5
|
+
|
|
6
|
+
const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
|
|
7
|
+
|
|
8
|
+
eventList.forEach(function (event) {
|
|
9
|
+
window.addEventListener(event, triggerScripts, { passive: true })
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
function triggerScripts() {
|
|
13
|
+
runScripts();
|
|
14
|
+
clearTimeout(autoLoadTimeout);
|
|
15
|
+
eventList.forEach(function (event) {
|
|
16
|
+
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function runScripts() {
|
|
21
|
+
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
22
|
+
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
</script>
|
|
2
26
|
<script type="text/javascript" defer delay="{{site.MonumetricID}}" data-cfasync="false"></script>
|
|
3
27
|
{% endif %}
|
|
4
28
|
|
|
5
29
|
{% if jekyll.environment == 'development' and site.MonumetricID %}
|
|
30
|
+
<script>
|
|
31
|
+
const autoLoadDuration = 5; //In Seconds
|
|
32
|
+
const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
|
|
33
|
+
|
|
34
|
+
const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
|
|
35
|
+
|
|
36
|
+
eventList.forEach(function (event) {
|
|
37
|
+
window.addEventListener(event, triggerScripts, { passive: true })
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
function triggerScripts() {
|
|
41
|
+
runScripts();
|
|
42
|
+
clearTimeout(autoLoadTimeout);
|
|
43
|
+
eventList.forEach(function (event) {
|
|
44
|
+
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function runScripts() {
|
|
49
|
+
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
50
|
+
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
</script>
|
|
6
54
|
<script type="text/javascript" delay="{{site.MonumetricID}}"></script>
|
|
7
55
|
{% endif %}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
<div class="container-fluid mx-0 article auto-gen-content">
|
|
6
6
|
<div class="row mx-auto-0">
|
|
7
|
-
<div class="col-md-
|
|
7
|
+
<div class="col-md-6 mx-auto">
|
|
8
8
|
<div class="pageHeading text-left mb-5">
|
|
9
9
|
<h1 class="content-heading pb-0 m-0">
|
|
10
10
|
{{dataToShow.h1}}</h1>
|
|
@@ -34,8 +34,6 @@
|
|
|
34
34
|
</li>
|
|
35
35
|
</ul>
|
|
36
36
|
</div>
|
|
37
|
-
|
|
38
|
-
|
|
39
37
|
<div class="subHeading" style="margin: 50px 0;">
|
|
40
38
|
{%- if site.name == "wordswithletters" -%}
|
|
41
39
|
<h1 class="content_sub_heading pb-0 m-0">
|
|
@@ -72,7 +70,6 @@
|
|
|
72
70
|
</h1>
|
|
73
71
|
{%- endif -%}
|
|
74
72
|
</div>
|
|
75
|
-
|
|
76
73
|
<div class="listofwords">
|
|
77
74
|
{%- for letter in dataToShow.words-%}
|
|
78
75
|
{%- for item in letter -%}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{% assign cssData = site.data.[page.folderName][lang][file] %}
|
|
2
|
+
{{site.data.customcdns.customcdns.cssfiles}}
|
|
3
|
+
{%- if cssData.cssfilepaths -%}
|
|
4
|
+
{%- for path in cssData.cssfilepaths -%}
|
|
5
|
+
<link defer rel="stylesheet" href="{{path}}">
|
|
6
|
+
{%- endfor -%}
|
|
7
|
+
{%- endif -%}
|
|
8
|
+
{%- if cssData.csscdns -%}
|
|
9
|
+
{%- for item in cssData.csscdns -%}
|
|
10
|
+
{{item}}
|
|
11
|
+
{%- endfor -%}
|
|
12
|
+
{%- endif -%}
|
data/_includes/custom-head.html
CHANGED
|
@@ -28,34 +28,5 @@
|
|
|
28
28
|
|
|
29
29
|
{%- include google-analytics.html -%}
|
|
30
30
|
<!-- {% include adsense/adsense.html %} -->
|
|
31
|
-
{%- if site.MonumetricID -%}
|
|
32
|
-
<script>
|
|
33
|
-
const autoLoadDuration = 5; //In Seconds
|
|
34
|
-
const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
|
|
35
|
-
|
|
36
|
-
const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
|
|
37
|
-
|
|
38
|
-
eventList.forEach(function (event) {
|
|
39
|
-
window.addEventListener(event, triggerScripts, { passive: true })
|
|
40
|
-
});
|
|
41
|
-
|
|
42
|
-
function triggerScripts() {
|
|
43
|
-
runScripts();
|
|
44
|
-
clearTimeout(autoLoadTimeout);
|
|
45
|
-
eventList.forEach(function (event) {
|
|
46
|
-
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
47
|
-
});
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
function runScripts() {
|
|
51
|
-
// console.log(document.querySelector("script"))
|
|
52
|
-
// console.log("Javascript Executed!")
|
|
53
|
-
// console.log(document.querySelectorAll("script[delay]"))
|
|
54
|
-
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
55
|
-
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
56
|
-
});
|
|
57
|
-
}
|
|
58
|
-
</script>
|
|
59
|
-
{%- endif -%}
|
|
60
31
|
{% include Monumetric/Monumetric.html %}
|
|
61
32
|
</head>
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
<div class="container wordsInCertainPos_container">
|
|
2
|
+
<div class="row">
|
|
3
|
+
<div class="col-md-10 mx-auto wordsInCertainPos">
|
|
4
|
+
<div style="font-size: 15px;" class="alert errMessage" role="alert"></div>
|
|
5
|
+
<form name="verify" class="forms_data">
|
|
6
|
+
<div class="form-group">
|
|
7
|
+
<div class="col-md-6 p-0">
|
|
8
|
+
<div class="d-flex">
|
|
9
|
+
<div class="Ist">
|
|
10
|
+
<input data-id="0" type="text" autocomplete="off" tabIndex="0"
|
|
11
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
12
|
+
id="first" onkeyup="move(this,'second')">
|
|
13
|
+
<small>1st<span> Letter</span></small>
|
|
14
|
+
</div>
|
|
15
|
+
<div class="2nd">
|
|
16
|
+
<input data-id="1" type="text" autocomplete="off" tabIndex="1"
|
|
17
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
18
|
+
id="second" onkeyup="move(this,'third')">
|
|
19
|
+
<small>2nd<span> Letter</span></small>
|
|
20
|
+
</div>
|
|
21
|
+
|
|
22
|
+
<div class="3rd">
|
|
23
|
+
<input data-id="2" type="text" autocomplete="off" tabIndex="2"
|
|
24
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
25
|
+
id="third" onkeyup="move(this,'fourth')">
|
|
26
|
+
<small>3rd<span> Letter</span></small>
|
|
27
|
+
</div>
|
|
28
|
+
|
|
29
|
+
<div class="4th">
|
|
30
|
+
<input data-id="3" type="text" autocomplete="off" tabIndex="3"
|
|
31
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
32
|
+
id="fourth" onkeyup="move(this,'fivth')">
|
|
33
|
+
<small>4th<span> Letter</span></small>
|
|
34
|
+
</div>
|
|
35
|
+
|
|
36
|
+
<div class="5th">
|
|
37
|
+
<input data-id="4" type="text" autocomplete="off" tabIndex="4"
|
|
38
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
39
|
+
id="fivth" onkeyup="move(this,'six')">
|
|
40
|
+
<small>5th<span> Letter</span></small>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
<div class="form-group">
|
|
47
|
+
<div class="col-md-6 p-0">
|
|
48
|
+
<div class="d-flex">
|
|
49
|
+
<div class="6th">
|
|
50
|
+
<input data-id="5" type="text" autocomplete="off" tabIndex="1"
|
|
51
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
52
|
+
id="six" tabIndex="5" onkeyup="move(this,'seven')">
|
|
53
|
+
<small>6th<span> Letter</span></small>
|
|
54
|
+
</div>
|
|
55
|
+
|
|
56
|
+
<div class="7th">
|
|
57
|
+
<input data-id="6" type="text" autocomplete="off"
|
|
58
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
59
|
+
id="seven" tabIndex="6" onkeyup="move(this,'eight')">
|
|
60
|
+
<small>7th<span> Letter</span></small>
|
|
61
|
+
</div>
|
|
62
|
+
<div class="8th">
|
|
63
|
+
<input data-id="7" type="text" autocomplete="off"
|
|
64
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
65
|
+
id="eight" tabIndex="7" onkeyup="move(this,'nine')">
|
|
66
|
+
<small>8th<span> Letter</span></small>
|
|
67
|
+
</div>
|
|
68
|
+
<div class="9th">
|
|
69
|
+
<input data-id="8" type="text" autocomplete="off"
|
|
70
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
71
|
+
id="nine" tabIndex="8" onkeyup="move(this,'ten')">
|
|
72
|
+
<small>9th<span> Letter</span></small>
|
|
73
|
+
</div>
|
|
74
|
+
|
|
75
|
+
<div class="10th">
|
|
76
|
+
<input data-id="9" type="text" autocomplete="off"
|
|
77
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
78
|
+
id="ten" tabIndex="9" onkeyup="move(this,'eleven')">
|
|
79
|
+
<small>10th<span> Letter</span></small>
|
|
80
|
+
</div>
|
|
81
|
+
|
|
82
|
+
</div>
|
|
83
|
+
</div>
|
|
84
|
+
</div>
|
|
85
|
+
<div class="form-group">
|
|
86
|
+
<div class="col-md-6 p-0 wrapper">
|
|
87
|
+
<div class="d-flex">
|
|
88
|
+
<div class="11th">
|
|
89
|
+
<input data-id="10" type="text"
|
|
90
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
91
|
+
id="eleven" value="" autocomplete="off" tabIndex="10" onkeyup="move(this,'twelve')">
|
|
92
|
+
<small>11th<span> Letter</span></small>
|
|
93
|
+
</div>
|
|
94
|
+
|
|
95
|
+
<div class="12th">
|
|
96
|
+
<input data-id="11" type="text"
|
|
97
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
98
|
+
id="twelve" value="" autocomplete="off" tabIndex="11"
|
|
99
|
+
onkeyup="move(this,'thirteen')">
|
|
100
|
+
<small>12th<span> Letter</span></small>
|
|
101
|
+
</div>
|
|
102
|
+
|
|
103
|
+
<div class="13th">
|
|
104
|
+
<input data-id="12" type="text"
|
|
105
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
106
|
+
id="thirteen" value="" autocomplete="off" tabIndex="12"
|
|
107
|
+
onkeyup="move(this,'fourteen')">
|
|
108
|
+
<small>13th<span> Letter</span></small>
|
|
109
|
+
</div>
|
|
110
|
+
<div class="14th">
|
|
111
|
+
<input data-id="13" type="text"
|
|
112
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
113
|
+
id="fourteen" value="" autocomplete="off" tabIndex="13"
|
|
114
|
+
onkeyup="move(this,'fifteen')">
|
|
115
|
+
<small>14th<span> Letter</span></small>
|
|
116
|
+
</div>
|
|
117
|
+
|
|
118
|
+
<div class="15th">
|
|
119
|
+
<input data-id="14" type="text"
|
|
120
|
+
class="letter_field greenLetters greenWithIndex form-control px-5" maxlength="1"
|
|
121
|
+
id="fifteen" value="" autocomplete="off" tabIndex="14"
|
|
122
|
+
onkeyup="move(this,'sixteen')">
|
|
123
|
+
<small>15th<span> Letter</span></small>
|
|
124
|
+
</div>
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
</div>
|
|
128
|
+
</div>
|
|
129
|
+
</div>
|
|
130
|
+
<div class="form-group text-right">
|
|
131
|
+
<div class="col-md-4 p-0" style="margin: 0 0 0 auto;">
|
|
132
|
+
<button type="submit" id="certain_pos_submit" class="btn wordsInCertainPos_btn mt-3">
|
|
133
|
+
<span id="searchData">SEARCH</span>
|
|
134
|
+
<div class="spinner"></div>
|
|
135
|
+
</button>
|
|
136
|
+
</div>
|
|
137
|
+
</div>
|
|
138
|
+
</form>
|
|
139
|
+
</div>
|
|
140
|
+
<div class="col-md-10 mx-auto p-0 mt-3">
|
|
141
|
+
<div id="certain_pos_count"></div>
|
|
142
|
+
<div id="certain_pos_words_data"></div>
|
|
143
|
+
<div class="alert" role="alert" id="certain_pos_error_msg" style="font-size: 15px; padding:15px"></div>
|
|
144
|
+
</div>
|
|
145
|
+
</div>
|
|
146
|
+
</div>
|
|
147
|
+
|
|
148
|
+
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
|
|
149
|
+
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
|
|
150
|
+
<script>
|
|
151
|
+
$(document).on('keypress', 'input', function (e) {
|
|
152
|
+
if (e.which === 32) {
|
|
153
|
+
e.preventDefault();
|
|
154
|
+
var $next = $('[tabIndex=' + (+this.tabIndex + 1) + ']');
|
|
155
|
+
|
|
156
|
+
if (!$next.length) {
|
|
157
|
+
$next = $('[tabIndex=1]');
|
|
158
|
+
}
|
|
159
|
+
$next.focus().click();
|
|
160
|
+
}
|
|
161
|
+
});
|
|
162
|
+
function move(first, last) {
|
|
163
|
+
if (first.value.length) {
|
|
164
|
+
document.getElementById(last).focus()
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
</script>
|
data/_includes/head/index.html
CHANGED
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
<link rel="stylesheet" href="{{ '/assets/css/wordGroup.css' | relative_url }}">
|
|
30
30
|
<link rel="stylesheet" href="{{ '/assets/css/footer.css' | relative_url }}">
|
|
31
31
|
|
|
32
|
+
{% include cssfile/links.html %}
|
|
33
|
+
|
|
32
34
|
<title>
|
|
33
35
|
{%- unless page.layout == "home" -%}
|
|
34
36
|
{{dataToShow.title }}
|
|
35
37
|
{%- endunless -%}
|
|
36
38
|
{{ page.title}}</title>
|
|
37
39
|
|
|
38
|
-
|
|
39
|
-
|
|
40
40
|
<script>
|
|
41
41
|
if ('serviceWorker' in navigator) {
|
|
42
42
|
window.addEventListener('load', () => {
|
|
@@ -102,32 +102,6 @@
|
|
|
102
102
|
|
|
103
103
|
{%- include google-analytics.html -%}
|
|
104
104
|
|
|
105
|
-
|
|
106
|
-
{%- if site.MonumetricID -%}
|
|
107
|
-
<script>
|
|
108
|
-
const autoLoadDuration = 5; //In Seconds
|
|
109
|
-
const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
|
|
110
|
-
|
|
111
|
-
const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
|
|
112
|
-
|
|
113
|
-
eventList.forEach(function (event) {
|
|
114
|
-
window.addEventListener(event, triggerScripts, { passive: true })
|
|
115
|
-
});
|
|
116
|
-
|
|
117
|
-
function triggerScripts() {
|
|
118
|
-
runScripts();
|
|
119
|
-
clearTimeout(autoLoadTimeout);
|
|
120
|
-
eventList.forEach(function (event) {
|
|
121
|
-
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
122
|
-
});
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
function runScripts() {
|
|
126
|
-
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
127
|
-
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
128
|
-
});
|
|
129
|
-
}
|
|
130
|
-
</script>
|
|
131
|
-
{%- endif -%}
|
|
105
|
+
{% include Monumetric/Monumetric.html %}
|
|
132
106
|
|
|
133
107
|
</head>
|
|
@@ -7,8 +7,7 @@
|
|
|
7
7
|
{% else %}
|
|
8
8
|
<a href="/">
|
|
9
9
|
<img class="logo-height" loading="lazy" src="{{navbar.navbarBrandLogo}}" alt="{{navbar.navbarBrandLogo}}"
|
|
10
|
-
style="height:
|
|
11
|
-
|
|
10
|
+
style="height: 35px; width: 35px;" class="navbar-brand-image">
|
|
12
11
|
</a>
|
|
13
12
|
{% endif %}
|
|
14
13
|
|
data/_includes/header/index.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<!-- header starts -->
|
|
6
6
|
<header id="header">
|
|
7
7
|
<!-- navigation startss -->
|
|
8
|
-
<nav class="navbar
|
|
8
|
+
<nav class="navbar navbar-expand-lg navbar-dark" style="background: {{CustomColor.navbarBg}}">
|
|
9
9
|
|
|
10
10
|
<a class="navbar-brand" href="/" title="{{dataToShow.tooltip}}">
|
|
11
11
|
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}" style="width:35px; height:35px;">
|
data/_includes/script.html
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{% assign scriptData = site.data.[page.folderName][lang][file] %}
|
|
2
|
-
<
|
|
3
|
-
|
|
2
|
+
<link rel="stylesheet"
|
|
3
|
+
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
|
|
4
|
+
<script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
|
5
|
+
<script defer src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
|
|
6
|
+
<script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js"></script>
|
|
7
|
+
<script>WebFont.load({ google: { families: ['Poppins:400&display=swap'] } })</script>
|
|
4
8
|
{{site.data.customcdns.customcdns.jsfiles}}
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
9
|
+
{%- if scriptData.jsfilepaths -%}
|
|
10
|
+
{%- for path in scriptData.jsfilepaths -%}
|
|
11
|
+
<script src="{{path}}"></script>
|
|
12
|
+
{%- endfor -%}
|
|
13
|
+
{%- endif -%}
|
|
14
|
+
{%- if scriptData.jscdns -%}
|
|
15
|
+
{%- for item in scriptData.jscdns -%}
|
|
16
|
+
{{item}}
|
|
17
|
+
{%- endfor -%}
|
|
18
|
+
{%- endif -%}
|