word-games-theme 0.7.5 → 0.7.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/footer/en/data.json +27 -0
- data/_includes/footer/index.html +5 -3
- data/_layouts/default.html +1 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9adcfe3ae7ab46a19ebac83046fda24451d54fc15a937098374b7a1b5553c7a6
|
4
|
+
data.tar.gz: b292eda1987c21b23d6b368993e4a2dfe21fd25dbefd4b8c6a9728cfc41e6bc1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51cf6fafe5297d7e4fffb8a477af30aa33db80c35205ade0895d3fc557fb6427797304ecd36ab3f18fec02bc89240ebaa95789e9c74ce896ae96c11a2562c3f3
|
7
|
+
data.tar.gz: f4c0196446b60232dae552956ae40e3072e4ef30d5c630ee9a8b3353fcc867bb3774204aafd062dc0a7a92f79e28722202abcac50c81277f66234462161b9ba2
|
data/_data/footer/en/data.json
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"logo": "https://d33wubrfki0l68.cloudfront.net/ed710b6efb59f7057f7a02f110608e34d61929e6/2a338/assets/images/wordswithletters-logo.svg",
|
3
3
|
"heading": "marketing@wordgames.org",
|
4
|
+
"linksTitle": "Resources",
|
4
5
|
"companytitle": "Company",
|
5
6
|
"networksitestitle": "Network sites",
|
6
7
|
"producttitle": "Tools",
|
@@ -18,6 +19,32 @@
|
|
18
19
|
"url": "/disclaimer"
|
19
20
|
}
|
20
21
|
],
|
22
|
+
"links": [
|
23
|
+
{
|
24
|
+
"name": "Ten letter words with these letters",
|
25
|
+
"url": "/ten-letter-words-with-these-letters"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"name": "Two letter words with these letters",
|
29
|
+
"url": "/two-letter-words-with-these-letters"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"name": "Thirteen letter words with these letters",
|
33
|
+
"url": "/thirteen-letter-words-with-these-letters"
|
34
|
+
},
|
35
|
+
{
|
36
|
+
"name": "Three letter words with these letters",
|
37
|
+
"url": "/three-letter-words-with-these-letters"
|
38
|
+
},
|
39
|
+
{
|
40
|
+
"name": "Twelve letter words with these letters",
|
41
|
+
"url": "/twelve-letter-words-with-these-letters"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"name": "Eleven letter words with these letters",
|
45
|
+
"url": "/eleven-letter-words-with-these-letters"
|
46
|
+
}
|
47
|
+
],
|
21
48
|
"tools": [
|
22
49
|
{
|
23
50
|
"name": "Wordle Solver",
|
data/_includes/footer/index.html
CHANGED
@@ -82,6 +82,7 @@
|
|
82
82
|
</ul>
|
83
83
|
</div>
|
84
84
|
</div>
|
85
|
+
|
85
86
|
<div class="col-md-2 txt-secondary">
|
86
87
|
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.companytitle | default:
|
87
88
|
'Company' }}</p>
|
@@ -90,12 +91,13 @@
|
|
90
91
|
{% endfor %}
|
91
92
|
</div>
|
92
93
|
<div class="col-md-2 txt-secondary">
|
93
|
-
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.
|
94
|
-
'
|
95
|
-
{% for data in dataToShow.
|
94
|
+
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.linksTitle | default:
|
95
|
+
'Links' }}</p>
|
96
|
+
{% for data in dataToShow.links %}
|
96
97
|
<p class="mb-4"><a class="footer-links txt-secondary" href="{{data.url}}">{{data.name}}</a></p>
|
97
98
|
{% endfor %}
|
98
99
|
</div>
|
100
|
+
|
99
101
|
<div class="col-md-2 txt-secondary ">
|
100
102
|
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.producttitle | default:
|
101
103
|
'tools' }}</p>
|
data/_layouts/default.html
CHANGED
@@ -45,9 +45,7 @@
|
|
45
45
|
<script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
46
46
|
<script defer src=" https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
|
47
47
|
<script>
|
48
|
-
|
49
|
-
$('[data-toggle="tooltip"]').tooltip()
|
50
|
-
})
|
48
|
+
|
51
49
|
let txtBox = document.querySelector('.txtBox')
|
52
50
|
let focusBorder = document.querySelector('.focus-border')
|
53
51
|
|