word-games-theme 1.9.5 → 1.9.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,18 @@
1
1
  <section class="related-posts-section">
2
2
  <div class="container">
3
3
  <div class="relatedPosts">
4
- <h2 class="pt-5 pb-0 related_post_heading">You might also like</h2>
4
+
5
+ {%- if site.ezoicAds -%}
6
+ <div class="row">
7
+ <div class="col-md-9 mx-auto">
8
+ {%- endif -%}
9
+ <h2 class="pt-5 pb-0 related_post_heading mb-3">You might also like</h2>
10
+ {%- if site.ezoicAds -%}
11
+ </div>
12
+ </div>
13
+ {%- endif -%}
14
+
15
+
5
16
  {% assign maxRelated = 6 %}
6
17
  {% assign minCommonTags = 1 %}
7
18
  {% assign maxRelatedCounter = 0 %}
@@ -20,147 +31,160 @@
20
31
  {%- endif -%}
21
32
 
22
33
  <div class="row">
23
- {% for post in site.posts %}
24
- {% assign sameTagCount = 0 %}
25
- {% assign commonTags = '' %}
26
-
27
- {%- if categories -%}
28
- {% for category in post.categories %}
29
- {% if post.url != page.url %}
30
- {% if categories contains category %}
31
- {% assign sameTagCount = sameTagCount | plus: 1 %}
32
- {% endif %}
33
- {% endif %}
34
- {% endfor %}
35
- {%- endif -%}
36
-
37
- {%- if tags -%}
38
- {% for tag in post.tags %}
39
- {% if post.url != page.url %}
40
- {% if tags contains tag %}
41
- {% assign sameTagCount = sameTagCount | plus: 1 %}
42
- {% endif %}
43
- {%- endif -%}
44
- {% endfor %}
45
- {%- endif -%}
46
-
47
-
48
- {% if sameTagCount >= minCommonTags %}
49
- {%- include authors/authors.html-%}
50
- <div class="col-lg-4 col-md-6 mb-4 card-group">
51
- <div class="card h-100">
52
- <a href="{{ post.url }}">
53
- <img src="{{ post.image }}" loading="lazy" class="card-img-top" height="100%" width="100%"
54
- alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
55
- </a>
56
- <div class="card-body">
57
- <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
58
- <h3 class="card-title mb-4 text-left">{{ post.title }}</h3>
59
- </a>
60
- </div>
61
- <div class="card-footer bg-white">
62
- <div class="wrapfooter">
63
- {% if post.author %}
64
- <span class="meta-footer-thumb">
65
- <img class="author-thumb" loading="lazy" height="35px" width="35px"
66
- src="{{ image }}" alt="{{ authorName }}" {%- if site.crossorigin -%} crossorigin
67
- {%- endif -%}>
68
- </span>
69
- {% endif %}
70
-
71
- <span class="author-meta">
72
- <span class="post-name">
73
- <a target="_blank" href="/blog">{{authorName}}</a>
74
- </span><br>
75
- <span class="post-date">{{post.date | date_to_string }}</span>
76
- </span>
34
+ {%- if site.ezoicAds -%}
35
+ <div class="col-md-9 mx-auto">
36
+ <div class="row">
37
+ {%- endif -%}
38
+
39
+ {% for post in site.posts %}
40
+ {% assign sameTagCount = 0 %}
41
+ {% assign commonTags = '' %}
42
+
43
+ {%- if categories -%}
44
+ {% for category in post.categories %}
45
+ {% if post.url != page.url %}
46
+ {% if categories contains category %}
47
+ {% assign sameTagCount = sameTagCount | plus: 1 %}
48
+ {% endif %}
49
+ {% endif %}
50
+ {% endfor %}
51
+ {%- endif -%}
52
+
53
+ {%- if tags -%}
54
+ {% for tag in post.tags %}
55
+ {% if post.url != page.url %}
56
+ {% if tags contains tag %}
57
+ {% assign sameTagCount = sameTagCount | plus: 1 %}
58
+ {% endif %}
59
+ {%- endif -%}
60
+ {% endfor %}
61
+ {%- endif -%}
62
+
63
+
64
+ {% if sameTagCount >= minCommonTags %}
65
+ {%- include authors/authors.html-%}
66
+ <div class="col-lg-4 col-md-6 mb-4 card-group">
67
+ <div class="card h-100">
68
+ <a href="{{ post.url }}">
69
+ <img src="{{ post.image }}" loading="lazy" class="card-img-top" height="100%"
70
+ width="100%" alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%-
71
+ endif -%}>
72
+ </a>
73
+ <div class="card-body">
74
+ <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
75
+ <h3 class="card-title mb-4 text-left">{{ post.title }}</h3>
76
+ </a>
77
+ </div>
78
+ <div class="card-footer bg-white">
79
+ <div class="wrapfooter">
80
+ {% if post.author %}
81
+ <span class="meta-footer-thumb">
82
+ <img class="author-thumb" loading="lazy" height="35px" width="35px"
83
+ src="{{ image }}" alt="{{ authorName }}" {%- if site.crossorigin -%}
84
+ crossorigin {%- endif -%}>
85
+ </span>
86
+ {% endif %}
87
+
88
+ <span class="author-meta">
89
+ <span class="post-name">
90
+ <a target="_blank" href="/blog">{{authorName}}</a>
91
+ </span><br>
92
+ <span class="post-date">{{post.date | date_to_string }}</span>
93
+ </span>
77
94
 
95
+ </div>
96
+ </div>
78
97
  </div>
79
98
  </div>
80
- </div>
81
- </div>
82
- {% assign maxRelatedCounter = maxRelatedCounter | plus: 1 %}
83
- {% if maxRelatedCounter >= maxRelated %}
84
- {% break %}
85
- {% endif %}
86
- {%- else -%}
87
- {%- endif -%}
88
- {% endfor %}
89
- {%- assign remamingPosts = maxRelated | minus: maxRelatedCounter -%}
90
-
91
-
92
-
93
-
94
- {%- if remamingPosts > 0 -%}
95
- {% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
96
- {% for post in posts %}
97
- {%- if remamingPosts > 0 -%}
98
- {%- assign tagData = true -%}
99
- {%- assign catData = true -%}
100
- {%- if tags -%}
101
- {% for tag in post.tags %}
102
- {% if post.url != page.url %}
103
- {% if tags contains tag %}
104
- {%- assign tagData = false -%}
105
- {%- break -%}
106
- {% endif %}
107
- {%- endif -%}
108
- {% endfor %}
109
- {%- endif -%}
110
- {%- if categories -%}
111
- {%- if tagData == false -%}
112
- {%- continue -%}
113
- {%- else -%}
114
- {% for category in post.categories %}
115
- {% if post.url != page.url %}
116
- {% if categories contains category %}
117
- {%- assign catData = false -%}
118
- {%- break -%}
119
- {% endif %}
120
- {% endif %}
121
- {% endfor %}
122
- {%- endif -%}
123
- {%- if catData == false -%}
124
- {%- continue -%}
125
- {%- endif -%}
126
- {%- assign remamingPosts = remamingPosts | minus: 1 -%}
127
- {%- include authors/authors.html-%}
128
- <div class="col-lg-4 col-md-6 mb-4 card-group">
129
- <div class="card h-100">
130
- <a href="{{ post.url }}">
131
- <img src="{{ post.image }}" class="card-img-top" height="100%" width="100%" loading="lazy"
132
- alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
133
- </a>
134
- <div class="card-body">
135
- <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
136
- <h3 class="card-title mb-4 text-left">{{ post.title }}</h3>
137
- </a>
138
- </div>
139
- <div class="card-footer bg-white">
140
- <div class="wrapfooter">
141
- {% if post.author %}
142
- <span class="meta-footer-thumb">
143
- <img class="author-thumb" loading="lazy" height="35px" width="35px" src="{{image}}"
144
- alt="{{ authorName }}" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
145
- </span>
146
- {% endif %}
147
- <span class="author-meta">
148
- <span class="post-name">
149
- <a target="_blank" href="/blog">{{authorName}}</a>
150
- </span><br>
151
- <span class="post-date">{{post.date | date_to_string }}</span>
152
- </span>
99
+ {% assign maxRelatedCounter = maxRelatedCounter | plus: 1 %}
100
+ {% if maxRelatedCounter >= maxRelated %}
101
+ {% break %}
102
+ {% endif %}
103
+ {%- else -%}
104
+ {%- endif -%}
105
+ {% endfor %}
106
+ {%- assign remamingPosts = maxRelated | minus: maxRelatedCounter -%}
107
+
108
+
109
+
153
110
 
111
+ {%- if remamingPosts > 0 -%}
112
+ {% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
113
+ {% for post in posts %}
114
+ {%- if remamingPosts > 0 -%}
115
+ {%- assign tagData = true -%}
116
+ {%- assign catData = true -%}
117
+ {%- if tags -%}
118
+ {% for tag in post.tags %}
119
+ {% if post.url != page.url %}
120
+ {% if tags contains tag %}
121
+ {%- assign tagData = false -%}
122
+ {%- break -%}
123
+ {% endif %}
124
+ {%- endif -%}
125
+ {% endfor %}
126
+ {%- endif -%}
127
+ {%- if categories -%}
128
+ {%- if tagData == false -%}
129
+ {%- continue -%}
130
+ {%- else -%}
131
+ {% for category in post.categories %}
132
+ {% if post.url != page.url %}
133
+ {% if categories contains category %}
134
+ {%- assign catData = false -%}
135
+ {%- break -%}
136
+ {% endif %}
137
+ {% endif %}
138
+ {% endfor %}
139
+ {%- endif -%}
140
+ {%- if catData == false -%}
141
+ {%- continue -%}
142
+ {%- endif -%}
143
+ {%- assign remamingPosts = remamingPosts | minus: 1 -%}
144
+ {%- include authors/authors.html-%}
145
+ <div class="col-lg-4 col-md-6 mb-4 card-group">
146
+ <div class="card h-100">
147
+ <a href="{{ post.url }}">
148
+ <img src="{{ post.image }}" class="card-img-top" height="100%" width="100%"
149
+ loading="lazy" alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%-
150
+ endif -%}>
151
+ </a>
152
+ <div class="card-body">
153
+ <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
154
+ <h3 class="card-title mb-4 text-left">{{ post.title }}</h3>
155
+ </a>
156
+ </div>
157
+ <div class="card-footer bg-white">
158
+ <div class="wrapfooter">
159
+ {% if post.author %}
160
+ <span class="meta-footer-thumb">
161
+ <img class="author-thumb" loading="lazy" height="35px" width="35px"
162
+ src="{{image}}" alt="{{ authorName }}" {%- if site.crossorigin -%}
163
+ crossorigin {%- endif -%}>
164
+ </span>
165
+ {% endif %}
166
+ <span class="author-meta">
167
+ <span class="post-name">
168
+ <a target="_blank" href="/blog">{{authorName}}</a>
169
+ </span><br>
170
+ <span class="post-date">{{post.date | date_to_string }}</span>
171
+ </span>
172
+
173
+ </div>
174
+ </div>
154
175
  </div>
155
176
  </div>
156
- </div>
157
- </div>
158
- {%- endif -%}
159
- {%- endif -%}
177
+ {%- endif -%}
178
+ {%- endif -%}
160
179
 
161
- {% endfor %}
162
- {%- endif -%}
180
+ {% endfor %}
181
+ {%- endif -%}
182
+ {%- if site.ezoicAds -%}
163
183
 
184
+ </div>
185
+ {%- endif -%}
186
+
187
+ </div>
164
188
  </div>
165
189
  </div>
166
190
  </div>
@@ -3,153 +3,161 @@
3
3
  {% assign dataToShow = site.data.[page.folderName][lang][file] %}
4
4
 
5
5
  <div class="container-fluid mx-0 auto-gen-content" style="margin-top: 100px;">
6
- <div class="row mx-auto-0">
7
- <div class="col-md-8 mx-auto">
8
- <div class="pageHeading text-left mb-5">
9
- <h1 class="content-heading pb-0 m-0">
10
- {{dataToShow.h1}}</h1>
11
- {%- if dataToShow.h2 -%}
12
- <h2>
13
- {{dataToShow.h2}}</h2>
14
- {%- endif -%}
15
- </div>
16
- <div id="toc_container table-of-content">
17
- <ul class="toc_list px-4 pt-5 pb-4">
18
- <h2 class=" text-left" style="font-weight: 900;">Table of contents</h2>
19
- <li class="tabledata mt-4" style="list-style: none">
20
- <ul>
21
- {%- for data in dataToShow.tableofcontent-%}
22
- {%- for item in data -%}
23
- <li class="tabledata">
24
- <a class="sameStyle" href="#{{item}}">
25
- {{item | capitalize }}
26
- </a>
27
- </li>
28
- {%- endfor -%}
29
- {%- endfor -%}
30
- </ul>
31
- </li>
32
- </ul>
33
- </div>
6
+ <div class="container">
7
+ <div class="row mx-auto-0">
8
+ <div class="col-md-8 mx-auto">
9
+ <div class="pageHeading text-left mb-5">
10
+ <h1 class="content-heading pb-0 m-0">
11
+ {{dataToShow.h1}}</h1>
12
+ {%- if dataToShow.h2 -%}
13
+ <h2>
14
+ {{dataToShow.h2}}</h2>
15
+ {%- endif -%}
16
+ </div>
17
+ <div id="toc_container table-of-content">
18
+ <ul class="toc_list px-4 pt-5 pb-4">
19
+ <h2 class=" text-left" style="font-weight: 900;">Table of contents</h2>
20
+ <li class="tabledata mt-4" style="list-style: none">
21
+ <ul>
22
+ {%- for data in dataToShow.tableofcontent-%}
23
+ {%- for item in data -%}
24
+ <li class="tabledata">
25
+ <a class="sameStyle" href="#{{item}}">
26
+ {{item | capitalize }}
27
+ </a>
28
+ </li>
29
+ {%- endfor -%}
30
+ {%- endfor -%}
31
+ </ul>
32
+ </li>
33
+ </ul>
34
+ </div>
34
35
 
35
36
 
36
- <div class="subHeading template-heading" style="margin: 50px 0;">
37
- {%- if site.name == "wordswithletters" -%}
38
- <h4 class="content_sub_heading pb-0 m-0">
39
- Using our {{dataToShow.x}} letter word finder you can create high scoring {{dataToShow.x}} letter
40
- words in
41
- scrabble/word with friends as follows.
42
- </h4>
43
- {%- endif -%}
44
- {%- if site.name == "wordfinders" -%}
45
- <h4 class="content_sub_heading pb-0 m-0">
46
- Using our {{dataToShow.x}} letter word finder you can create high scoring {{dataToShow.x}} letter
47
- words in
48
- scrabble/word with friends as follows.
49
- </h4>
50
- {%- endif -%}
51
- {%- if site.name == "wordscramblers" -%}
52
- <h4 class="content_sub_heading pb-0 m-0">
53
- Using our {{dataToShow.x}} letter word finder you can create high scoring {{dataToShow.x}} letter
54
- words in
55
- scrabble/word with friends as follows.
56
- </h4>
57
- {%- endif -%}
58
- {%- if site.name == "wordunscramblerss" -%}
59
- <h4 class="content_sub_heading pb-0 m-0">
60
- Using our {{dataToShow.x}} letter word finder you can create high scoring {{dataToShow.x}} letter
61
- words in
62
- scrabble/word with friends as follows.
63
- </h4>
64
- {%- endif -%}
65
- </div>
37
+ <div class="subHeading template-heading" style="margin: 50px 0;">
38
+ {%- if site.name == "wordswithletters" -%}
39
+ <h4 class="content_sub_heading pb-0 m-0">
40
+ Using our {{dataToShow.x}} letter word finder you can create high scoring {{dataToShow.x}}
41
+ letter
42
+ words in
43
+ scrabble/word with friends as follows.
44
+ </h4>
45
+ {%- endif -%}
46
+ {%- if site.name == "wordfinders" -%}
47
+ <h4 class="content_sub_heading pb-0 m-0">
48
+ Using our {{dataToShow.x}} letter word finder you can create high scoring {{dataToShow.x}}
49
+ letter
50
+ words in
51
+ scrabble/word with friends as follows.
52
+ </h4>
53
+ {%- endif -%}
54
+ {%- if site.name == "wordscramblers" -%}
55
+ <h4 class="content_sub_heading pb-0 m-0">
56
+ Using our {{dataToShow.x}} letter word finder you can create high scoring {{dataToShow.x}}
57
+ letter
58
+ words in
59
+ scrabble/word with friends as follows.
60
+ </h4>
61
+ {%- endif -%}
62
+ {%- if site.name == "wordunscramblerss" -%}
63
+ <h4 class="content_sub_heading pb-0 m-0">
64
+ Using our {{dataToShow.x}} letter word finder you can create high scoring {{dataToShow.x}}
65
+ letter
66
+ words in
67
+ scrabble/word with friends as follows.
68
+ </h4>
69
+ {%- endif -%}
70
+ </div>
71
+
72
+ <div class="listofletters">
73
+ {%- for data in dataToShow.words-%}
74
+ <div class="list of letters" style="padding-bottom:50px" id="{{data.letter}}">
75
+ <span style="font-size: 20px;">
76
+ <strong>
77
+ {{data.letter | capitalize }}
78
+ </strong> </span>
79
+ <br>
80
+
81
+ <div class="allletters" style="word-wrap: break-word;">
82
+ {%- for item in data.highestPoints -%}
83
+ <span class="pr-2" style="font-size: 13px;">{{item.letters}},</span>
84
+ {%- endfor -%}
85
+ </div>
66
86
 
67
- <div class="listofletters">
68
- {%- for data in dataToShow.words-%}
69
- <div class="list of letters" style="padding-bottom:50px" id="{{data.letter}}">
70
- <span style="font-size: 20px;">
71
- <strong>
72
- {{data.letter | capitalize }}
73
- </strong> </span>
74
- <br>
75
87
 
76
- <div class="allletters" style="word-wrap: break-word;">
77
88
  {%- for item in data.highestPoints -%}
78
- <span class="pr-2" style="font-size: 13px;">{{item.letters}},</span>
89
+ {%- if {{forloop.first}} -%}
90
+ {%- assign Hletter = item.letters -%}
91
+ {%- assign Hlowerpointscrablle = item.scrablepoints -%}
92
+ {%- assign Hlowerpointwwf = item.wwfpoints -%}
93
+ {%- endif -%}
79
94
  {%- endfor -%}
80
- </div>
81
95
 
96
+ {%- for item in data.lowesPoints -%}
97
+ {%- if {{forloop.first}} -%}
98
+ {%- assign lowerletter = item.letters -%}
99
+ {%- assign lowerpointscrablle = item.scrablepoints -%}
100
+ {%- assign lowerpointwwf = item.wwfpoints -%}
101
+ {%- endif -%}
102
+ {%- endfor -%}
82
103
 
83
- {%- for item in data.highestPoints -%}
84
- {%- if {{forloop.first}} -%}
85
- {%- assign Hletter = item.letters -%}
86
- {%- assign Hlowerpointscrablle = item.scrablepoints -%}
87
- {%- assign Hlowerpointwwf = item.wwfpoints -%}
88
- {%- endif -%}
89
- {%- endfor -%}
90
104
 
91
- {%- for item in data.lowesPoints -%}
92
- {%- if {{forloop.first}} -%}
93
- {%- assign lowerletter = item.letters -%}
94
- {%- assign lowerpointscrablle = item.scrablepoints -%}
95
- {%- assign lowerpointwwf = item.wwfpoints -%}
96
- {%- endif -%}
97
- {%- endfor -%}
105
+ <p style="color:#000; font-size:15px; margin-top:10px; margin-bottom: 0;">
106
+ If you get letters <b>{{data.letter}}</b>, you can use our {{data.x}} letter word finder to
107
+ create word
108
+ <b> {{Hletter}}</b>
109
+ which has <b>{{Hlowerpointscrablle}}</b> points in scrabble. One can also create
110
+ <b>{{lowerletter}}</b>
111
+ with
112
+ these
113
+ letters
114
+ which would have
115
+ fetched <b>{{lowerpointscrablle}}</b> points, but would have been a wrong choice, as it
116
+ would
117
+ have led
118
+ to a
119
+ lower score.
120
+ Similarly you can use our {{data.x}} letter word finder to create word <b>{{Hletter}}</b>
121
+ which
122
+ has <b>{{Hlowerpointwwf}}</b>
123
+ points in
124
+ words
125
+ with friends and word <b>{{lowerletter}}</b> which has <b>{{lowerpointwwf}}</b> points
126
+ </p>
98
127
 
99
128
 
100
- <p style="color:#000; font-size:15px; margin-top:10px; margin-bottom: 0;">
101
- If you get letters <b>{{data.letter}}</b>, you can use our {{data.x}} letter word finder to
102
- create word
103
- <b> {{Hletter}}</b>
104
- which has <b>{{Hlowerpointscrablle}}</b> points in scrabble. One can also create
105
- <b>{{lowerletter}}</b>
106
- with
107
- these
108
- letters
109
- which would have
110
- fetched <b>{{lowerpointscrablle}}</b> points, but would have been a wrong choice, as it would
111
- have led
112
- to a
113
- lower score.
114
- Similarly you can use our {{data.x}} letter word finder to create word <b>{{Hletter}}</b> which
115
- has <b>{{Hlowerpointwwf}}</b>
116
- points in
117
- words
118
- with friends and word <b>{{lowerletter}}</b> which has <b>{{lowerpointwwf}}</b> points
119
- </p>
120
-
129
+ <br>
130
+ <strong style="font-size: 15px;">
131
+ Summary
132
+ </strong>
133
+ {%- for item in data.highestPoints -%}
134
+ {%- if {{forloop.first}} -%}
135
+ <table class="table table-bordered" style="font-size: 14px;">
136
+ <tr>
137
+ <th>
138
+ letter
139
+ </th>
140
+ <th>
141
+ Highest score in scrabble
142
+ </th>
143
+ <th>
144
+ Highest score in words with friends.
145
+ </th>
146
+ </tr>
147
+ <tr>
148
+ <td>
149
+ {{data.letter | capitalize }}
150
+ </td>
151
+ <td>{{item.letters }} - {{item.scrablepoints}}</td>
152
+ <td>{{item.letters }} - {{item.wwfpoints}}</td>
153
+ </tr>
154
+ </table>
155
+ {%- endif -%}
156
+ {%- endfor -%}
121
157
 
122
- <br>
123
- <strong style="font-size: 15px;">
124
- Summary
125
- </strong>
126
- {%- for item in data.highestPoints -%}
127
- {%- if {{forloop.first}} -%}
128
- <table class="table table-bordered" style="font-size: 14px;">
129
- <tr>
130
- <th>
131
- letter
132
- </th>
133
- <th>
134
- Highest score in scrabble
135
- </th>
136
- <th>
137
- Highest score in words with friends.
138
- </th>
139
- </tr>
140
- <tr>
141
- <td>
142
- {{data.letter | capitalize }}
143
- </td>
144
- <td>{{item.letters }} - {{item.scrablepoints}}</td>
145
- <td>{{item.letters }} - {{item.wwfpoints}}</td>
146
- </tr>
147
- </table>
148
- {%- endif -%}
158
+ </div>
149
159
  {%- endfor -%}
150
-
151
160
  </div>
152
- {%- endfor -%}
153
161
  </div>
154
162
  </div>
155
163
  </div>