word-games-theme 1.5.6 → 1.5.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/_data/wordgames/en/jumble_word_finder.json +25 -4
  3. data/_includes/adBlocker/adBlocker.html +1 -1
  4. data/_includes/footer/index.html +2 -20
  5. data/_includes/head/index.html +4 -4
  6. data/_includes/header/index.html +1 -5
  7. data/_includes/howto.html +0 -37
  8. data/_includes/postbox.html +1 -1
  9. data/_includes/script.html +7 -3
  10. data/_includes/section/commonPage.html +0 -21
  11. data/_includes/section/count.html +1 -39
  12. data/_includes/section/feature.html +0 -28
  13. data/_includes/section/news.html +1 -27
  14. data/_includes/section/recent_posts.html +0 -48
  15. data/_includes/section/related_categories_post.html +1 -179
  16. data/_includes/xyzpages/xyz.html +0 -1
  17. data/_layouts/allpages.html +1 -4
  18. data/_layouts/blank.html +0 -5
  19. data/_layouts/blog.html +0 -50
  20. data/_layouts/categories.html +2 -3
  21. data/_layouts/default.html +0 -7
  22. data/_layouts/page.html +1 -4
  23. data/_layouts/page2.html +2 -4
  24. data/_layouts/post.html +23 -35
  25. data/_layouts/privacyPolicy.html +0 -6
  26. data/_layouts/termAndCondition.html +2 -4
  27. data/_layouts/tools.html +1 -5
  28. data/_layouts/wordMeaning.html +2 -4
  29. data/_layouts/xyzpages.html +1 -5
  30. data/assets/css/adBlocker.css +0 -1
  31. data/assets/css/blog.css +1 -46
  32. data/assets/css/content.css +0 -7
  33. data/assets/css/feature.css +0 -1
  34. data/assets/css/footer.css +0 -1
  35. data/assets/css/game.css +2 -20
  36. data/assets/css/home.css +19 -22
  37. data/assets/css/news.css +6 -0
  38. data/assets/css/style.css +0 -20
  39. data/assets/css/testhome.css +417 -0
  40. data/assets/css/wordleSolver.css +43 -29
  41. data/assets/css/wordsInCertainPosition.css +0 -7
  42. metadata +3 -8
  43. data/_includes/placeholder-loading.html +0 -8
  44. data/assets/css/config.css +0 -22
  45. data/assets/fonts/Poppins-Regular.ttf +0 -0
  46. data/assets/js/advancedFilter.js +0 -5
  47. data/assets/js/advancedFilter2.js +0 -12
  48. data/assets/js/advancedFilter3.js +0 -2
@@ -1,180 +1,3 @@
1
- {%- if site.MonumetricID -%}
2
- <section class="related-posts-section">
3
- <div class="container">
4
- <div class="relatedPosts">
5
-
6
- {% assign maxRelated = 6 %}
7
- {% assign minCommonTags = 1 %}
8
- {% assign maxRelatedCounter = 0 %}
9
- {% assign file = page.fileName %}
10
- {% assign lang = "en" %}
11
- {% assign folder = page.folderName %}
12
- {%- if site.data[folder][lang][file].categories -%}
13
- {% assign categories= site.data[folder][lang][file].categories %}
14
- {%- else -%}
15
- {% assign categories= page.categories %}
16
- {%- endif -%}
17
- {%- if site.data[folder][lang][file].tags -%}
18
- {% assign tags= site.data[folder][lang][file].tags %}
19
- {%- else -%}
20
- {% assign tags= page.tags %}
21
- {%- endif -%}
22
-
23
- <div class="row">
24
- <div class="col-lg-8 mx-auto">
25
- <h2 class="pt-5 pb-0 related_post_heading text-center">You might also like</h2>
26
- <div class="row">
27
- {% for post in site.posts %}
28
- {% assign sameTagCount = 0 %}
29
- {% assign commonTags = '' %}
30
-
31
- {%- if categories -%}
32
- {% for category in post.categories %}
33
- {% if post.url != page.url %}
34
- {% if categories contains category %}
35
- {% assign sameTagCount = sameTagCount | plus: 1 %}
36
- {% endif %}
37
- {% endif %}
38
- {% endfor %}
39
- {%- endif -%}
40
-
41
- {%- if tags -%}
42
- {% for tag in post.tags %}
43
- {% if post.url != page.url %}
44
- {% if tags contains tag %}
45
- {% assign sameTagCount = sameTagCount | plus: 1 %}
46
- {% endif %}
47
- {%- endif -%}
48
- {% endfor %}
49
- {%- endif -%}
50
-
51
-
52
- {% if sameTagCount >= minCommonTags %}
53
- {%- include authors/authors.html-%}
54
- <div class="col-md-6 mb-4 card-group">
55
- <div class="card h-100">
56
- <a href="{{ post.url }}">
57
- <img src="{{ post.image }}" loading="lazy" class="card-img-top" height="100%"
58
- width="100%" alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%-
59
- endif -%}>
60
- </a>
61
- <div class="card-body">
62
- <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
63
- <h3 class="card-title mb-4 text-left">{{ post.title }}</h3>
64
- </a>
65
- </div>
66
- <div class="card-footer bg-white">
67
- <div class="wrapfooter">
68
- {% if post.author %}
69
- <span class="meta-footer-thumb">
70
- <img class="author-thumb" loading="lazy" src="{{ image }}"
71
- alt="{{ authorName }}" {%- if site.crossorigin -%} crossorigin {%- endif
72
- -%}>
73
- </span>
74
- {% endif %}
75
-
76
- <span class="author-meta">
77
- <span class="post-name">
78
- <a target="_blank" href="/blog">{{authorName}}</a>
79
- </span><br>
80
- <span class="post-date">{{post.date | date_to_string }}</span>
81
- </span>
82
-
83
- </div>
84
- </div>
85
- </div>
86
- </div>
87
- {% assign maxRelatedCounter = maxRelatedCounter | plus: 1 %}
88
- {% if maxRelatedCounter >= maxRelated %}
89
- {% break %}
90
- {% endif %}
91
- {%- else -%}
92
- {%- endif -%}
93
- {% endfor %}
94
- {%- assign remamingPosts = maxRelated | minus: maxRelatedCounter -%}
95
-
96
-
97
-
98
-
99
- {%- if remamingPosts > 0 -%}
100
- {% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
101
- {% for post in posts %}
102
- {%- if remamingPosts > 0 -%}
103
- {%- assign tagData = true -%}
104
- {%- assign catData = true -%}
105
- {%- if tags -%}
106
- {% for tag in post.tags %}
107
- {% if post.url != page.url %}
108
- {% if tags contains tag %}
109
- {%- assign tagData = false -%}
110
- {%- break -%}
111
- {% endif %}
112
- {%- endif -%}
113
- {% endfor %}
114
- {%- endif -%}
115
- {%- if categories -%}
116
- {%- if tagData == false -%}
117
- {%- continue -%}
118
- {%- else -%}
119
- {% for category in post.categories %}
120
- {% if post.url != page.url %}
121
- {% if categories contains category %}
122
- {%- assign catData = false -%}
123
- {%- break -%}
124
- {% endif %}
125
- {% endif %}
126
- {% endfor %}
127
- {%- endif -%}
128
- {%- if catData == false -%}
129
- {%- continue -%}
130
- {%- endif -%}
131
- {%- assign remamingPosts = remamingPosts | minus: 1 -%}
132
- {%- include authors/authors.html-%}
133
- <div class="col-md-6 mb-4 card-group">
134
- <div class="card h-100">
135
- <a href="{{ post.url }}">
136
- <img src="{{ post.image }}" class="card-img-top" height="100%" width="100%"
137
- loading="lazy" alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%-
138
- endif -%}>
139
- </a>
140
- <div class="card-body">
141
- <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
142
- <h3 class="card-title mb-4 text-left">{{ post.title }}</h3>
143
- </a>
144
- </div>
145
- <div class="card-footer bg-white">
146
- <div class="wrapfooter">
147
- {% if post.author %}
148
- <span class="meta-footer-thumb">
149
- <img class="author-thumb" loading="lazy" height="35px" width="35px"
150
- src="{{image}}" alt="{{ authorName }}" {%- if site.crossorigin -%}
151
- crossorigin {%- endif -%}>
152
- </span>
153
- {% endif %}
154
- <span class="author-meta">
155
- <span class="post-name">
156
- <a target="_blank" href="/blog">{{authorName}}</a>
157
- </span><br>
158
- <span class="post-date">{{post.date | date_to_string }}</span>
159
- </span>
160
-
161
- </div>
162
- </div>
163
- </div>
164
- </div>
165
- {%- endif -%}
166
- {%- endif -%}
167
-
168
- {% endfor %}
169
- {%- endif -%}
170
-
171
- </div>
172
- </div>
173
- </div>
174
- </div>
175
- </div>
176
- </section>
177
- {%- else -%}
178
1
  <section class="related-posts-section">
179
2
  <div class="container">
180
3
  <div class="relatedPosts">
@@ -341,5 +164,4 @@
341
164
  </div>
342
165
  </div>
343
166
  </div>
344
- </section>
345
- {%- endif -%}
167
+ </section>
@@ -115,6 +115,5 @@
115
115
 
116
116
  </div>
117
117
 
118
- <!-- close commonPage as LandingPage -->
119
118
  <link rel="stylesheet" href="{{ '/assets/css/advancedFilter.css' | relative_url }}">
120
119
  <script src="/assets/js/xyz.js"></script>
@@ -8,11 +8,8 @@
8
8
 
9
9
  {{content}}
10
10
 
11
- {%- if site.MonumetricID -%}
12
- {%- include footer/unqFooter.html -%}
13
- {%- else -%}
11
+
14
12
  {%- include footer/index.html -%}
15
- {%- endif -%}
16
13
 
17
14
  {%- include script.html -%}
18
15
  </body>
data/_layouts/blank.html CHANGED
@@ -10,12 +10,7 @@
10
10
  {{content}}
11
11
 
12
12
 
13
- {%- if site.MonumetricID and page.url != '/' -%}
14
- {%- include footer/unqFooter.html -%}
15
- {%- else -%}
16
13
  {%- include footer/index.html -%}
17
- {%- endif -%}
18
-
19
14
 
20
15
  {%- include script.html -%}
21
16
 
data/_layouts/blog.html CHANGED
@@ -10,15 +10,9 @@
10
10
  <div class="container">
11
11
  <div class="row justify-content-center section-title-wrap">
12
12
  <div class="col-lg-12">
13
- {%- if site.MonumetricID -%}
14
- <h1 style="font-weight: 900;" class="display-4 text-center mt-5 small_description">{{
15
- site.data.blog.blog.h1 }}
16
- </h1>
17
- {%- else -%}
18
13
  <h1 style="font-weight: 900;" class="display-4 m-0 small_description">{{
19
14
  site.data.blog.blog.h1 }}
20
15
  </h1>
21
- {%- endif -%}
22
16
  <p class="lead mb-5 mt-1" style="font-size: 18px;">
23
17
  {{ site.data.blog.blog.description }}
24
18
  </p>
@@ -27,49 +21,6 @@
27
21
  <div class="main-content">
28
22
  {{content}}
29
23
  </div>
30
- {%- if site.MonumetricID -%}
31
- <div class="row">
32
- <div class="col-lg-8 col-md-12 mx-auto">
33
- <div class="row">
34
- {% for post in paginator.posts %}
35
- <div class="col-lg-6 col-md-6 mb-4 card-group">
36
- <div class="card h-100">
37
- <a href="{{ post.url }}">
38
- <img src="{{ post.image }}" loading="lazy" height="215px" width="100%"
39
- class="card-img-top" alt="{{post.title}}">
40
- </a>
41
- <div class="card-body">
42
- <a href="{{ post.url }}" class="anchor_link">
43
- <h2 class="card-title mb-4">{{ post.title }}</h2>
44
- </a>
45
- </div>
46
- {%- include authors/authors.html -%}
47
- <div class="card-footer bg-white">
48
- <div class="wrapfooter">
49
- {% if post.author %}
50
- <span class="meta-footer-thumb">
51
- <img class="author-thumb" loading="lazy" height="35px" width="35px"
52
- src="{{ image }}" alt="{{ authorName }}">
53
- </span>
54
- {% endif %}
55
-
56
- <span class="author-meta">
57
- <span class="post-name">
58
- <a target="_blank" href="/blog">{{authorName}}</a>
59
- </span><br>
60
- <span class="post-date">{{post.date | date_to_string }}</span>
61
- </span>
62
- <!-- <span class="post-read-more "><a class="text-dark" href="{{ post.url }}"
63
- title="Read Story">Read More</a></span> -->
64
- </div>
65
- </div>
66
- </div>
67
- </div>
68
- {% endfor %}
69
- </div>
70
- </div>
71
- </div>
72
- {%- else -%}
73
24
  <div class="row">
74
25
  {% for post in paginator.posts %}
75
26
  <div class="col-lg-4 col-md-6 mb-4 card-group">
@@ -106,7 +57,6 @@
106
57
  </div>
107
58
  </div>
108
59
  {% endfor %}
109
- {%- endif -%}
110
60
  </div>
111
61
  {%- include paginationBlogPage.html -%}
112
62
  </div>
@@ -1,10 +1,9 @@
1
1
  ---
2
2
  layout: blog
3
3
  ---
4
-
5
4
  <div class="container">
6
- <div class="row listrecent mx-5">
7
- <div class="col-md-10 mx-auto">
5
+ <div class="row listrecent">
6
+ <div class="col-md-12 mx-auto">
8
7
  <div class="row">
9
8
  {% for category in site.categories %}
10
9
  <div class="section-title col-md-12 mt-5">
@@ -19,8 +19,6 @@
19
19
 
20
20
  {% include section/feature.html %}
21
21
 
22
-
23
-
24
22
  {%- if dataToShow.faqList -%}
25
23
  {%- if dataToShow.faqList.first.Question !='' -%}
26
24
  {% include section/news.html %}
@@ -53,12 +51,7 @@
53
51
  {%- include section/recent_posts.html -%}
54
52
  {% endif %}
55
53
 
56
- {%- if site.MonumetricID and page.url != '/' -%}
57
- {%- include footer/unqFooter.html -%}
58
- {%- else -%}
59
54
  {%- include footer/index.html -%}
60
- {%- endif -%}
61
-
62
55
 
63
56
  {%- include script.html -%}
64
57
 
data/_layouts/page.html CHANGED
@@ -54,11 +54,8 @@
54
54
 
55
55
  {%- include share/socialshare.html -%}
56
56
 
57
- {%- if site.MonumetricID -%}
58
- {%- include footer/unqFooter.html -%}
59
- {%- else -%}
57
+
60
58
  {%- include footer/index.html -%}
61
- {%- endif -%}
62
59
 
63
60
  {%- include script.html -%}
64
61
 
data/_layouts/page2.html CHANGED
@@ -50,11 +50,9 @@
50
50
 
51
51
  {%- include share/socialshare.html -%}
52
52
 
53
- {%- if site.MonumetricID -%}
54
- {%- include footer/unqFooter.html -%}
55
- {%- else -%}
53
+
56
54
  {%- include footer/index.html -%}
57
- {%- endif -%}
55
+
58
56
 
59
57
  {%- include script.html -%}
60
58
 
data/_layouts/post.html CHANGED
@@ -31,12 +31,12 @@
31
31
  <section class="section_post">
32
32
  <div class="container">
33
33
  <div class="row section-title-wrap">
34
- <div class="col-md-8 mx-auto mt-5">
34
+ <div class="col-md-8 mt-5">
35
35
  <h1 class="display-4" style="font-weight: 900;">{{ page.title }}</h1>
36
36
  </div>
37
37
  </div>
38
38
  <div class="row mt-5">
39
- <div class="col-md-8 mx-auto">
39
+ <div class="col-md-8">
40
40
  {%- include authors/authors.html -%}
41
41
  {%- include postauthorbio.html -%}
42
42
  {% if page.author %}
@@ -45,46 +45,37 @@
45
45
  <div class="post-content">
46
46
  {{ content }}
47
47
  </div>
48
-
49
48
  {%- include paginationPostPage.html -%}
50
49
  </div>
51
- <div class="col-md-8 mx-auto">
50
+ <div class="col-md-4 ">
52
51
  <div class="mainThings">
53
52
  <div class="socialIons">
54
53
  <ul class="list-unstyled item-lists2">
55
- <li style="color: rgba(0,0,0,.44); font-size:16px">{{ site.data.blog.share.label }}</li>
54
+ <li><a style="pointer-events: none;">{{ site.data.blog.share.label }}</a></li>
56
55
  {% capture title %}{{ page.title }}{% endcapture %}
57
56
  {% assign url = page.url | relative_url | prepend: site.url %}
58
57
  {% for share in site.data.blog.share.platforms %}
59
58
  {% assign link = share.link | replace: 'TITLE', title | replace: 'URL', url %}
60
- <li>
61
- <a href=" {{ link }}" data-toggle="tooltip"
59
+ <li> <a href=" {{ link }}" data-toggle="tooltip"
62
60
  onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
63
61
  data-placement="top" title="{{ share.type }}" aria-label="{{ share.type }}">
64
- <img loading="lazy" alt="share-icon" src="{{ share.icon }}" class="mb-0 py-1"
65
- style="width: 18px; height: 18px;">
62
+ <i class="fa-fw {{ share.icon }}"></i>
66
63
  </a>
67
64
  </li>
68
65
  {% endfor %}
66
+ </span>
69
67
  </ul>
70
68
  </div>
71
-
72
69
  <div class="theseFeatures">
73
70
  {%- if page.URLS -%}
74
- <div class="font-weight-bolder" style="font-size: 15px;">Checkout out these features</div>
71
+ <h3 class="font-weight-bolder">Checkout out these features</h3>
75
72
  <br>
76
- <div class="row">
77
- {%- for item in page.URLS -%}
78
- {%- if item.name-%}
79
- <p class="mb-3 col-md-6 col-lg-3">
80
- <a id="{{item.name}}" class="featureLink" style="font-size: 13px"
81
- href="{{item.url}}">{{item.name}}</a>
82
- </p>
83
- {%- endif -%}
84
- {%- endfor -%}
85
- </div>
73
+ {%- for item in page.URLS -%}
74
+ <p class="mb-3"> <a class="featureLink" style="font-size: 13px"
75
+ href="{{item.url}}">{{item.name}}</a></p>
76
+ {%- endfor -%}
86
77
  {% else %}
87
- <div class="font-weight-bolder" style="font-size: 15px;">Checkout out these features</div>
78
+ <h3 class="font-weight-bolder">Checkout out these features</h3>
88
79
  <br>
89
80
 
90
81
  {% assign tools = site.pages | where_exp:"item","item.tool" %}
@@ -95,18 +86,16 @@
95
86
  {%- endif -%}
96
87
  {%- endfor -%}
97
88
 
98
- <div class="row">
99
- {%- for url in allRandomUrls limit: 10-%}
100
- {% if url %}
101
- <p class="mb-3 col-md-6 col-lg-3">
102
- <a id="{{url}}" class="featureLink" style="font-size: 13px" href="{{url }}">
103
- {%- assign name = url | replace: '/', ' ' | replace: '-', ' ' -%}
104
- {{ name }}
105
- </a>
106
- </p>
107
- {%- endif -%}
108
- {%- endfor -%}
109
- </div>
89
+ {%- for url in allRandomUrls limit: 10-%}
90
+ {% if url %}
91
+ <p class="mb-3">
92
+ <a class="featureLink" style="font-size: 13px" href="{{url }}">
93
+ {%- assign name = url | replace: '/', ' ' | replace: '-', ' ' -%}
94
+ {{ name }}
95
+ </a>
96
+ </p>
97
+ {%- endif -%}
98
+ {%- endfor -%}
110
99
  {%- endif -%}
111
100
 
112
101
  </div>
@@ -122,7 +111,6 @@
122
111
  </div>
123
112
  </div>
124
113
  </section>
125
- <!-- {% include adBlocker/adBlocker.html %} -->
126
114
  {%- include section/count.html -%}
127
115
  {% include script.html %}
128
116
  <script>
@@ -412,14 +412,8 @@
412
412
  care@{{page.companyName}}.{{page.domain}}.</p>
413
413
  </div>
414
414
  </section>
415
- <!-- End main body content -->
416
415
 
417
- {%- if site.MonumetricID -%}
418
- {%- include footer/unqFooter.html -%}
419
- {%- else -%}
420
416
  {%- include footer/index.html -%}
421
- {%- endif -%}
422
-
423
417
 
424
418
  {%- include script.html -%}
425
419
 
@@ -414,11 +414,9 @@
414
414
  <!-- End main body content -->
415
415
 
416
416
 
417
- {%- if site.MonumetricID -%}
418
- {%- include footer/unqFooter.html -%}
419
- {%- else -%}
417
+
420
418
  {%- include footer/index.html -%}
421
- {%- endif -%}
419
+
422
420
  {%- include script.html -%}
423
421
 
424
422
  </body>
data/_layouts/tools.html CHANGED
@@ -66,12 +66,8 @@
66
66
  {%- include section/recent_posts.html -%}
67
67
  {% endif %}
68
68
 
69
-
70
- {%- if site.MonumetricID -%}
71
- {%- include footer/unqFooter.html -%}
72
- {%- else -%}
73
69
  {%- include footer/index.html -%}
74
- {%- endif -%}
70
+
75
71
  {%- include script.html -%}
76
72
  </body>
77
73
 
@@ -150,11 +150,9 @@
150
150
 
151
151
 
152
152
  {% include adBlocker/adBlocker.html %}
153
- {%- if site.MonumetricID -%}
154
- {%- include footer/unqFooter.html -%}
155
- {%- else -%}
153
+
156
154
  {%- include footer/index.html -%}
157
- {%- endif -%}
155
+
158
156
 
159
157
  {%- include script.html -%}
160
158
  <script src="/assets/js/scrabbleDictonary.js"></script>
@@ -88,13 +88,9 @@
88
88
  <body>
89
89
  {%- include header/index.html -%}
90
90
 
91
- <!-- Ezoic - sidebar_floating_1 - sidebar_floating_1 -->
92
91
  <div id="ezoic-pub-ad-placeholder-109"> </div>
93
- <!-- End Ezoic - sidebar_floating_1 - sidebar_floating_1 -->
94
-
95
- <!-- Ezoic - sidebar_floating_2 - sidebar_floating_2 -->
96
92
  <div id="ezoic-pub-ad-placeholder-110"> </div>
97
- <!-- End Ezoic - sidebar_floating_2 - sidebar_floating_2 -->
93
+
98
94
 
99
95
  {%- include xyzpages/xyz.html -%}
100
96
 
@@ -102,7 +102,6 @@
102
102
  font-size: 12px;
103
103
  }
104
104
 
105
-
106
105
  .wrapper {
107
106
  position: fixed;
108
107
  left: 0;