word-games-theme 0.2.0 → 0.2.5
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/popularUrls.json +44 -0
- data/_layouts/post.html +44 -3
- data/assets/css/advancedFilter.css +1 -1
- data/assets/css/home.css +3 -2
- data/assets/css/style.css +0 -5
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5418a3c379370de0f524308dc9371ad27408ddd22eb26337552dbcbde0e9429a
|
|
4
|
+
data.tar.gz: c1e9f6f986f92197b8db6871ce7a72849a676cd0f81bc19c1ca85d03a3512d61
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a6a40d941641ad72ab9460c79e281057dd9bb22108e8516304a68a8679f93ecfd08cffd4e21018c087e2b387ea0504aa05526603f1f74f50a527fb767ee068bb
|
|
7
|
+
data.tar.gz: 4ed5b9462e15cdab17faea63ac3a9dd74d12654e81c3dcaddfd8d218f2fb6d0842847bfc71213e03b62fb37054315d50c64e2016fa6cbc9b49e53428ebb64a30
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"URLS": [
|
|
3
|
+
{
|
|
4
|
+
"name": "Anagram word finder",
|
|
5
|
+
"url": "/anagram-word-finder"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"name": "Jumble word finder",
|
|
9
|
+
"url": "/jumble-word-finder"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "Lexical word finder",
|
|
13
|
+
"url": "/lexical-word-finder"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "Scrabble word finder cheat",
|
|
17
|
+
"url": "/scrabble-word-finder-cheat"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "Words with friends word",
|
|
21
|
+
"url": "/words-with-friends-word-finder"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "Thirteen letter word finder",
|
|
25
|
+
"url": "/thirteen-letter-word-finder"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "Twelve letter word finder",
|
|
29
|
+
"url": "/twelve-letter-word-finder"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "Ten letter word finder",
|
|
33
|
+
"url": "/ten-letter-word-finder"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "Nine letter word finder",
|
|
37
|
+
"url": "/nine-letter-word-finder"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "Eight letter word finder",
|
|
41
|
+
"url": "/eight-letter-word-finder"
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
}
|
data/_layouts/post.html
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
<html>
|
|
2
2
|
|
|
3
3
|
{% include custom-head.html %}
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
<style>
|
|
7
|
+
.theseFeatures .featureLink:hover {
|
|
8
|
+
text-decoration: underline !important;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@media (max-width:768px) {
|
|
12
|
+
.theseFeatures {
|
|
13
|
+
text-align: center !important;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
}
|
|
17
|
+
</style>
|
|
18
|
+
|
|
4
19
|
<body>
|
|
5
20
|
{%- include header/blogHeader.html -%}
|
|
6
21
|
<section class="section_post">
|
|
@@ -22,7 +37,7 @@
|
|
|
22
37
|
<li> <a href=" {{ link }}" data-toggle="tooltip"
|
|
23
38
|
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
|
|
24
39
|
data-placement="top" title="{{ share.type }}" aria-label="{{ share.type }}">
|
|
25
|
-
<
|
|
40
|
+
<img src="{{ share.icon }}" class="mb-0 py-1" style="width: 18px"></img>
|
|
26
41
|
</a>
|
|
27
42
|
</li>
|
|
28
43
|
{% endfor %}
|
|
@@ -45,8 +60,9 @@
|
|
|
45
60
|
<div class="post-content">
|
|
46
61
|
{{ content }}
|
|
47
62
|
</div>
|
|
48
|
-
|
|
63
|
+
|
|
49
64
|
{%- include paginationPostPage.html -%}
|
|
65
|
+
|
|
50
66
|
{%- if page.categories or page.tags-%}
|
|
51
67
|
{%- include section/related_categories_post.html -%}
|
|
52
68
|
{%- else -%}
|
|
@@ -57,6 +73,31 @@
|
|
|
57
73
|
{%- include disqus_comments.html -%}
|
|
58
74
|
{%- endif -%}
|
|
59
75
|
</div>
|
|
76
|
+
|
|
77
|
+
</div>
|
|
78
|
+
|
|
79
|
+
<div class="col-md-2 text-right theseFeatures">
|
|
80
|
+
{%- if page.URLS -%}
|
|
81
|
+
<h6 class="font-weight-bolder">Checkout out these features</h6>
|
|
82
|
+
<br>
|
|
83
|
+
{%- for item in page.URLS -%}
|
|
84
|
+
<p> <a class="featureLink" style="font-size: 11px" href="{{item.url}}">{{item.name}}</a></p>
|
|
85
|
+
{%- endfor -%}
|
|
86
|
+
{% else %}
|
|
87
|
+
<h6 class="font-weight-bolder">Checkout out these features</h6>
|
|
88
|
+
<br>
|
|
89
|
+
{%- for item in site.pages limit: 10 -%}
|
|
90
|
+
{%- if item.tool != "wordfinders" and item.tool != 'wordswithletter' and item.tool != '
|
|
91
|
+
word-scramble-help' and item.tool != 'wordfinders' and item.tool != "wordscramblers" and item.tool
|
|
92
|
+
!= 'wordunscramblerss' -%}
|
|
93
|
+
|
|
94
|
+
<p> <a class="featureLink" style="font-size: 11px" href="/{{item.tool}}">{{item.tool | capitalize |
|
|
95
|
+
replace: '-', ' '
|
|
96
|
+
}}</a></p>
|
|
97
|
+
{%- endif -%}
|
|
98
|
+
{%- endfor -%}
|
|
99
|
+
{%- endif -%}
|
|
100
|
+
|
|
60
101
|
</div>
|
|
61
102
|
</div>
|
|
62
103
|
</section>
|
|
@@ -66,4 +107,4 @@
|
|
|
66
107
|
<script src="{{ '/assets/js/TopScroll.js' | relative_url }}"></script>
|
|
67
108
|
</body>
|
|
68
109
|
|
|
69
|
-
</html>
|
|
110
|
+
</html>
|
data/assets/css/home.css
CHANGED
|
@@ -124,7 +124,7 @@ input:-webkit-autofill:active {
|
|
|
124
124
|
overflow: hidden;
|
|
125
125
|
object-fit: cover;
|
|
126
126
|
right: 69px;
|
|
127
|
-
padding:
|
|
127
|
+
padding: 19px 0;
|
|
128
128
|
border-bottom: 0 !important;
|
|
129
129
|
border-radius: 0;
|
|
130
130
|
border: none;
|
|
@@ -197,9 +197,10 @@ input:-webkit-autofill:active {
|
|
|
197
197
|
top: 60px;
|
|
198
198
|
}
|
|
199
199
|
.select_dropDown2 {
|
|
200
|
-
padding: 8px 0;
|
|
201
200
|
width: 30%;
|
|
202
201
|
right: 40px;
|
|
202
|
+
padding: 9.5px 0;
|
|
203
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
|
|
203
204
|
}
|
|
204
205
|
}
|
|
205
206
|
@media (max-width: 768px) {
|
data/assets/css/style.css
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: word-games-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- manpreet-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-07-
|
|
11
|
+
date: 2021-07-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -64,6 +64,7 @@ files:
|
|
|
64
64
|
- _data/blog/alertbar.yml
|
|
65
65
|
- _data/blog/blog.yml
|
|
66
66
|
- _data/blog/nav.json
|
|
67
|
+
- _data/blog/popularUrls.json
|
|
67
68
|
- _data/blog/share.yml
|
|
68
69
|
- _data/footer/en/data.json
|
|
69
70
|
- _data/footer/hi/data.json
|