word-games-theme 1.0.9 → 1.1.0
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/_includes/disqus_comments.html +21 -2
- data/_includes/footer/unqFooter.html +84 -0
- data/_includes/section/count.html +33 -3
- data/_includes/section/recent_posts.html +7 -3
- data/_includes/section/related_categories_post.html +183 -1
- data/_layouts/blog.html +52 -2
- data/_layouts/default.html +5 -0
- data/_layouts/page.html +4 -0
- data/_layouts/page2.html +4 -0
- data/_layouts/privacyPolicy.html +6 -0
- data/_layouts/termAndCondition.html +4 -0
- data/_layouts/tools.html +4 -1
- data/_layouts/wordMeaning.html +4 -0
- data/assets/css/advancedFilter.css +1 -2
- data/assets/css/blog.css +1 -0
- data/assets/css/config.css +1 -1
- 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: 1fac7816d22aa585e1597a8162ec27c4cc146c649bd88f283091800f1380bd0e
|
|
4
|
+
data.tar.gz: e62e8a2388d6e56b3c5c9d582843ce7fa6b32e33a2fbadd2ceeb0c24454c7f91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e2dc7d5ca132feb8d67959d67af337e19eab6f28d3e086a27a6290f4a1d3647bc0717e2d79f1c99dc066a662652a5be132ddb24f004fa1820a121fa8f39c565
|
|
7
|
+
data.tar.gz: 6e66fedaf884043783417ba4f23f5ff0bceb6d90ade729040406558dc5b92c9e693688dabd98c4aa929b5c1ea60370f81a81b77719097e62cb87516065359128
|
|
@@ -1,6 +1,24 @@
|
|
|
1
|
+
{% if site.MonumetricID %}
|
|
2
|
+
<div class="row">
|
|
3
|
+
<div class="col-md-8 mx-auto">
|
|
4
|
+
<div id="disqus_thread"></div>
|
|
5
|
+
<script>
|
|
6
|
+
(function () {
|
|
7
|
+
var d = document, s = d.createElement('script');
|
|
8
|
+
s.src = 'https://{{site.disqus.shortname}}.disqus.com/embed.js';
|
|
9
|
+
s.setAttribute('data-timestamp', +new Date());
|
|
10
|
+
(d.head || d.body).appendChild(s);
|
|
11
|
+
})();
|
|
12
|
+
</script>
|
|
13
|
+
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by
|
|
14
|
+
Disqus.</a></noscript>
|
|
15
|
+
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
{%- else -%}
|
|
1
19
|
<div id="disqus_thread"></div>
|
|
2
20
|
<script>
|
|
3
|
-
(function () {
|
|
21
|
+
(function () {
|
|
4
22
|
var d = document, s = d.createElement('script');
|
|
5
23
|
s.src = 'https://{{site.disqus.shortname}}.disqus.com/embed.js';
|
|
6
24
|
s.setAttribute('data-timestamp', +new Date());
|
|
@@ -8,4 +26,5 @@
|
|
|
8
26
|
})();
|
|
9
27
|
</script>
|
|
10
28
|
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by
|
|
11
|
-
Disqus.</a></noscript>
|
|
29
|
+
Disqus.</a></noscript>
|
|
30
|
+
{%- endif -%}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{% assign lang = page.lang %}
|
|
2
|
+
{% assign dataToShow = site.data.footer[lang].data %}
|
|
3
|
+
{%- assign networksitesData = site.data.footer.networksites -%}
|
|
4
|
+
{% assign dataFile= site.data[folder][lang][file] %}
|
|
5
|
+
|
|
6
|
+
<footer class="footer-section">
|
|
7
|
+
<div class="footer-wrap">
|
|
8
|
+
<div class="container">
|
|
9
|
+
<div class="footer-single-col">
|
|
10
|
+
<div class="row text-center">
|
|
11
|
+
<div class="col-lg-8 mx-auto">
|
|
12
|
+
<div class="row d-flex mt-5">
|
|
13
|
+
<div class="col-md-6 txt-secondary">
|
|
14
|
+
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.linksTitle |
|
|
15
|
+
default:
|
|
16
|
+
'Links' }}</p>
|
|
17
|
+
{% for data in dataToShow.links %}
|
|
18
|
+
<p class="mb-4"><a class="footer-links txt-secondary"
|
|
19
|
+
href="{{data.url}}">{{data.name}}</a></p>
|
|
20
|
+
{% endfor %}
|
|
21
|
+
</div>
|
|
22
|
+
<div class="col-md-6 txt-secondary ">
|
|
23
|
+
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.producttitle |
|
|
24
|
+
default:
|
|
25
|
+
'tools' }}</p>
|
|
26
|
+
{% for data in dataToShow.tools %}
|
|
27
|
+
<p class="mb-4"><a class="footer-links txt-secondary"
|
|
28
|
+
href="{{data.url}}">{{data.name}}</a></p>
|
|
29
|
+
{% endfor %}
|
|
30
|
+
</div>
|
|
31
|
+
<div class="col-md-6 txt-secondary ">
|
|
32
|
+
<p class="font-weight-bold txt-primary footer_subheading">{{dataToShow.networksitestitle
|
|
33
|
+
|
|
|
34
|
+
default: 'Network sites'}}</p>
|
|
35
|
+
{% for data in networksitesData.networkSites %}
|
|
36
|
+
<p class="mb-4"><a class="footer-links txt-secondary"
|
|
37
|
+
href="{{data.url}}">{{data.name}}</a></p>
|
|
38
|
+
{% endfor %}
|
|
39
|
+
</div>
|
|
40
|
+
<div class="col-md-6 txt-secondary">
|
|
41
|
+
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.companytitle |
|
|
42
|
+
default:
|
|
43
|
+
'Company' }}</p>
|
|
44
|
+
{% for data in dataToShow.company %}
|
|
45
|
+
<p class="mb-4"><a class="footer-links txt-secondary"
|
|
46
|
+
href="{{data.url}}">{{data.name}}</a></p>
|
|
47
|
+
{% endfor %}
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
<div class="col-md-12 txt-secondary mb-5">
|
|
51
|
+
{%- if dataToShow.logo -%}
|
|
52
|
+
<div class="footer-logo-cont">
|
|
53
|
+
<img loading="lazy" src="{{dataToShow.logo}}" title="logo" class="footer-logo d-block"
|
|
54
|
+
alt="footer logo" width="30px">
|
|
55
|
+
<span class="email_heaidng">
|
|
56
|
+
{{dataToShow.heading}}
|
|
57
|
+
</span>
|
|
58
|
+
<!-- <div class="footer-title">{{dataToShow.heading}}</div> -->
|
|
59
|
+
</div>
|
|
60
|
+
{%- endif -%}
|
|
61
|
+
<hr class="footer_hr">
|
|
62
|
+
<div class="footer-social-list mt-4">
|
|
63
|
+
<ul class="list-inline">
|
|
64
|
+
{% for data in dataToShow.social %}
|
|
65
|
+
<li>
|
|
66
|
+
<a href="{{data.url}}" target="_blank">
|
|
67
|
+
<i class="{{data.icon}}"></i>
|
|
68
|
+
</a>
|
|
69
|
+
</li>
|
|
70
|
+
{% endfor %}
|
|
71
|
+
</ul>
|
|
72
|
+
</div>
|
|
73
|
+
</div>
|
|
74
|
+
<div class="copyright-text mt-5 txt-secondary text-center">
|
|
75
|
+
<p>
|
|
76
|
+
{{dataToShow.messege}}
|
|
77
|
+
</p>
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
81
|
+
</div>
|
|
82
|
+
</div>
|
|
83
|
+
</div>
|
|
84
|
+
</footer>
|
|
@@ -1,6 +1,37 @@
|
|
|
1
|
+
{% if site.MonumetricID %}
|
|
1
2
|
<div class="explore">
|
|
2
|
-
<
|
|
3
|
+
<div class="row">
|
|
4
|
+
<div class="col-md-8 mx-auto">
|
|
5
|
+
|
|
6
|
+
<h2 class="text-center font-weight-bolder mb-5">Explore <span class="d-none d-md-inline">→</span></h2>
|
|
7
|
+
<ul>
|
|
8
|
+
{% assign categories_list = site.categories %}
|
|
9
|
+
{% if categories_list.first[0] == null %}
|
|
10
|
+
{% for category in categories_list %}
|
|
11
|
+
<a class="cat mt-1 mb-1"
|
|
12
|
+
href="/blog/categories#{{ category | url_escape | strip | replace: ' ', '-' }}">{{
|
|
13
|
+
category
|
|
14
|
+
|
|
|
15
|
+
camelcase }} ({{ site.tags[category].size }})</a>
|
|
16
|
+
{% endfor %}
|
|
17
|
+
{% else %}
|
|
18
|
+
{% for category in categories_list %}
|
|
19
|
+
<a class="cat mt-1 mb-1"
|
|
20
|
+
href="/blog/categories#{{ category[0] | url_escape | strip | replace: ' ', '-' }}">{{
|
|
21
|
+
category[0]
|
|
22
|
+
| camelcase }} ({{ category[1].size }})</a>
|
|
23
|
+
{% endfor %}
|
|
24
|
+
{% endif %}
|
|
25
|
+
{% assign categories_list = nil %}
|
|
26
|
+
</ul>
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
{%- else -%}
|
|
3
32
|
|
|
33
|
+
<div class="explore">
|
|
34
|
+
<h2>Explore <span class="d-none d-md-inline">→</span></h2>
|
|
4
35
|
<ul>
|
|
5
36
|
{% assign categories_list = site.categories %}
|
|
6
37
|
{% if categories_list.first[0] == null %}
|
|
@@ -19,6 +50,5 @@
|
|
|
19
50
|
{% endif %}
|
|
20
51
|
{% assign categories_list = nil %}
|
|
21
52
|
</ul>
|
|
22
|
-
|
|
23
53
|
</div>
|
|
24
|
-
|
|
54
|
+
{%- endif -%}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
<div class="container">
|
|
2
2
|
<div class="relatedPosts">
|
|
3
|
-
|
|
4
|
-
<h1 class="related_post_heading">Recent Posts</h1>
|
|
5
|
-
{%- endif -%}
|
|
3
|
+
|
|
6
4
|
{% if site.MonumetricID %}
|
|
7
5
|
<div class="row">
|
|
8
6
|
<div class="col-lg-8 mx-auto">
|
|
7
|
+
{%- if site.posts.size>0 -%}
|
|
8
|
+
<h1 class="related_post_heading text-center">Recent Posts</h1>
|
|
9
|
+
{%- endif -%}
|
|
9
10
|
<div class="row">
|
|
10
11
|
{% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
|
|
11
12
|
{% for post in posts limit: 6%}
|
|
@@ -45,6 +46,9 @@
|
|
|
45
46
|
</div>
|
|
46
47
|
</div>
|
|
47
48
|
{%- else -%}
|
|
49
|
+
{%- if site.posts.size>0 -%}
|
|
50
|
+
<h1 class="related_post_heading">Recent Posts</h1>
|
|
51
|
+
{%- endif -%}
|
|
48
52
|
<div class="row">
|
|
49
53
|
{% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
|
|
50
54
|
{% for post in posts limit: 6%}
|
|
@@ -1,3 +1,184 @@
|
|
|
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="auto"
|
|
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
|
+
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
|
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
|
+
<span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
|
|
83
|
+
title="Read Story">Read
|
|
84
|
+
More</a></span>
|
|
85
|
+
</div>
|
|
86
|
+
</div>
|
|
87
|
+
</div>
|
|
88
|
+
</div>
|
|
89
|
+
{% assign maxRelatedCounter = maxRelatedCounter | plus: 1 %}
|
|
90
|
+
{% if maxRelatedCounter >= maxRelated %}
|
|
91
|
+
{% break %}
|
|
92
|
+
{% endif %}
|
|
93
|
+
{%- else -%}
|
|
94
|
+
{%- endif -%}
|
|
95
|
+
{% endfor %}
|
|
96
|
+
{%- assign remamingPosts = maxRelated | minus: maxRelatedCounter -%}
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
{%- if remamingPosts > 0 -%}
|
|
102
|
+
{% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
|
|
103
|
+
{% for post in posts %}
|
|
104
|
+
{%- if remamingPosts > 0 -%}
|
|
105
|
+
{%- assign tagData = true -%}
|
|
106
|
+
{%- assign catData = true -%}
|
|
107
|
+
{%- if tags -%}
|
|
108
|
+
{% for tag in post.tags %}
|
|
109
|
+
{% if post.url != page.url %}
|
|
110
|
+
{% if tags contains tag %}
|
|
111
|
+
{%- assign tagData = false -%}
|
|
112
|
+
{%- break -%}
|
|
113
|
+
{% endif %}
|
|
114
|
+
{%- endif -%}
|
|
115
|
+
{% endfor %}
|
|
116
|
+
{%- endif -%}
|
|
117
|
+
{%- if categories -%}
|
|
118
|
+
{%- if tagData == false -%}
|
|
119
|
+
{%- continue -%}
|
|
120
|
+
{%- else -%}
|
|
121
|
+
{% for category in post.categories %}
|
|
122
|
+
{% if post.url != page.url %}
|
|
123
|
+
{% if categories contains category %}
|
|
124
|
+
{%- assign catData = false -%}
|
|
125
|
+
{%- break -%}
|
|
126
|
+
{% endif %}
|
|
127
|
+
{% endif %}
|
|
128
|
+
{% endfor %}
|
|
129
|
+
{%- endif -%}
|
|
130
|
+
{%- if catData == false -%}
|
|
131
|
+
{%- continue -%}
|
|
132
|
+
{%- endif -%}
|
|
133
|
+
{%- assign remamingPosts = remamingPosts | minus: 1 -%}
|
|
134
|
+
{%- include authors/authors.html-%}
|
|
135
|
+
<div class="col-md-6 mb-4 card-group">
|
|
136
|
+
<div class="card h-100">
|
|
137
|
+
<a href="{{ post.url }}">
|
|
138
|
+
<img src="{{ post.image }}" class="card-img-top" height="215px" width="100%"
|
|
139
|
+
loading="lazy" alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%-
|
|
140
|
+
endif -%}>
|
|
141
|
+
</a>
|
|
142
|
+
<div class="card-body">
|
|
143
|
+
<a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
|
|
144
|
+
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
|
145
|
+
</a>
|
|
146
|
+
</div>
|
|
147
|
+
<div class="card-footer bg-white">
|
|
148
|
+
<div class="wrapfooter">
|
|
149
|
+
{% if post.author %}
|
|
150
|
+
<span class="meta-footer-thumb">
|
|
151
|
+
<img class="author-thumb" loading="lazy" src="{{image}}"
|
|
152
|
+
alt="{{ authorName }}" {%- if site.crossorigin -%} crossorigin {%- endif
|
|
153
|
+
-%}>
|
|
154
|
+
</span>
|
|
155
|
+
{% endif %}
|
|
156
|
+
<span class="author-meta">
|
|
157
|
+
<span class="post-name">
|
|
158
|
+
<a target="_blank" href="/blog">{{authorName}}</a>
|
|
159
|
+
</span><br>
|
|
160
|
+
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
161
|
+
</span>
|
|
162
|
+
<span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
|
|
163
|
+
title="Read Story">Read
|
|
164
|
+
More</a></span>
|
|
165
|
+
</div>
|
|
166
|
+
</div>
|
|
167
|
+
</div>
|
|
168
|
+
</div>
|
|
169
|
+
{%- endif -%}
|
|
170
|
+
{%- endif -%}
|
|
171
|
+
|
|
172
|
+
{% endfor %}
|
|
173
|
+
{%- endif -%}
|
|
174
|
+
|
|
175
|
+
</div>
|
|
176
|
+
</div>
|
|
177
|
+
</div>
|
|
178
|
+
</div>
|
|
179
|
+
</div>
|
|
180
|
+
</section>
|
|
181
|
+
{%- else -%}
|
|
1
182
|
<section class="related-posts-section">
|
|
2
183
|
<div class="container">
|
|
3
184
|
<div class="relatedPosts">
|
|
@@ -167,4 +348,5 @@
|
|
|
167
348
|
</div>
|
|
168
349
|
</div>
|
|
169
350
|
</div>
|
|
170
|
-
</section>
|
|
351
|
+
</section>
|
|
352
|
+
{%- endif -%}
|
data/_layouts/blog.html
CHANGED
|
@@ -9,8 +9,15 @@
|
|
|
9
9
|
<div class="container">
|
|
10
10
|
<div class="row justify-content-center section-title-wrap">
|
|
11
11
|
<div class="col-lg-12">
|
|
12
|
-
|
|
12
|
+
{%- if site.MonumetricID -%}
|
|
13
|
+
<h1 style="font-weight: 900;" class="display-4 text-center m-0 small_description">{{
|
|
14
|
+
site.data.blog.blog.h1 }}
|
|
13
15
|
</h1>
|
|
16
|
+
{%- else -%}
|
|
17
|
+
<h1 style="font-weight: 900;" class="display-4 m-0 small_description">{{
|
|
18
|
+
site.data.blog.blog.h1 }}
|
|
19
|
+
</h1>
|
|
20
|
+
{%- endif -%}
|
|
14
21
|
<p class="lead mb-5 mt-1" style="font-size: 18px;">
|
|
15
22
|
{{ site.data.blog.blog.description }}
|
|
16
23
|
</p>
|
|
@@ -19,6 +26,49 @@
|
|
|
19
26
|
<div class="main-content">
|
|
20
27
|
{{content}}
|
|
21
28
|
</div>
|
|
29
|
+
{%- if site.MonumetricID -%}
|
|
30
|
+
<div class="row">
|
|
31
|
+
<div class="col-lg-8 col-md-12 mx-auto">
|
|
32
|
+
<div class="row">
|
|
33
|
+
{% for post in paginator.posts %}
|
|
34
|
+
<div class="col-lg-6 col-md-6 mb-4 card-group">
|
|
35
|
+
<div class="card h-100">
|
|
36
|
+
<a href="{{ post.url }}">
|
|
37
|
+
<img src="{{ post.image }}" loading="lazy" height="215px" width="100%"
|
|
38
|
+
class="card-img-top" alt="">
|
|
39
|
+
</a>
|
|
40
|
+
<div class="card-body">
|
|
41
|
+
<a href="{{ post.url }}" class="anchor_link">
|
|
42
|
+
<h4 class="card-title mb-4">{{ post.title }}</h4>
|
|
43
|
+
</a>
|
|
44
|
+
</div>
|
|
45
|
+
{%- include authors/authors.html -%}
|
|
46
|
+
<div class="card-footer bg-white">
|
|
47
|
+
<div class="wrapfooter">
|
|
48
|
+
{% if post.author %}
|
|
49
|
+
<span class="meta-footer-thumb">
|
|
50
|
+
<img class="author-thumb" loading="lazy" src="{{ image }}"
|
|
51
|
+
alt="{{ authorName }}">
|
|
52
|
+
</span>
|
|
53
|
+
{% endif %}
|
|
54
|
+
|
|
55
|
+
<span class="author-meta">
|
|
56
|
+
<span class="post-name">
|
|
57
|
+
<a target="_blank" href="/blog">{{authorName}}</a>
|
|
58
|
+
</span><br>
|
|
59
|
+
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
60
|
+
</span>
|
|
61
|
+
<span class="post-read-more "><a class="text-dark" href="{{ post.url }}"
|
|
62
|
+
title="Read Story">Read More</a></span>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
65
|
+
</div>
|
|
66
|
+
</div>
|
|
67
|
+
{% endfor %}
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
70
|
+
</div>
|
|
71
|
+
{%- else -%}
|
|
22
72
|
<div class="row">
|
|
23
73
|
{% for post in paginator.posts %}
|
|
24
74
|
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
|
@@ -54,10 +104,10 @@
|
|
|
54
104
|
</div>
|
|
55
105
|
</div>
|
|
56
106
|
{% endfor %}
|
|
107
|
+
{%- endif -%}
|
|
57
108
|
</div>
|
|
58
109
|
{%- include paginationBlogPage.html -%}
|
|
59
110
|
</div>
|
|
60
|
-
|
|
61
111
|
{% include section/count.html %}
|
|
62
112
|
</section>
|
|
63
113
|
<!-- {%- include section/alertbar.html -%} -->
|
data/_layouts/default.html
CHANGED
data/_layouts/page.html
CHANGED
data/_layouts/page2.html
CHANGED
|
@@ -49,7 +49,11 @@
|
|
|
49
49
|
|
|
50
50
|
{%- include share/socialshare.html -%}
|
|
51
51
|
|
|
52
|
+
{%- if site.MonumetricID -%}
|
|
53
|
+
{%- include footer/unqFooter.html -%}
|
|
54
|
+
{%- else -%}
|
|
52
55
|
{%- include footer/index.html -%}
|
|
56
|
+
{%- endif -%}
|
|
53
57
|
|
|
54
58
|
{%- include script.html -%}
|
|
55
59
|
<script src="/assets/js/X-letter.js" data-url="{{site.url}}" data-range="{{page.blanktilerange}}"
|
data/_layouts/privacyPolicy.html
CHANGED
|
@@ -414,7 +414,13 @@
|
|
|
414
414
|
</section>
|
|
415
415
|
<!-- End main body content -->
|
|
416
416
|
|
|
417
|
+
{%- if site.MonumetricID -%}
|
|
418
|
+
{%- include footer/unqFooter.html -%}
|
|
419
|
+
{%- else -%}
|
|
417
420
|
{%- include footer/index.html -%}
|
|
421
|
+
{%- endif -%}
|
|
422
|
+
|
|
423
|
+
|
|
418
424
|
{%- include script.html -%}
|
|
419
425
|
|
|
420
426
|
</body>
|
data/_layouts/tools.html
CHANGED
data/_layouts/wordMeaning.html
CHANGED
|
@@ -150,7 +150,11 @@
|
|
|
150
150
|
|
|
151
151
|
|
|
152
152
|
{% include adBlocker/adBlocker.html %}
|
|
153
|
+
{%- if site.MonumetricID -%}
|
|
154
|
+
{%- include footer/unqFooter.html -%}
|
|
155
|
+
{%- else -%}
|
|
153
156
|
{%- include footer/index.html -%}
|
|
157
|
+
{%- endif -%}
|
|
154
158
|
|
|
155
159
|
{%- include script.html -%}
|
|
156
160
|
<script src="/assets/js/scrabbleDictonary.js"></script>
|
data/assets/css/blog.css
CHANGED
data/assets/css/config.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: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- manpreet-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-03-
|
|
11
|
+
date: 2022-03-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -123,6 +123,7 @@ files:
|
|
|
123
123
|
- _includes/filterWords/index.html
|
|
124
124
|
- _includes/find-words-in-certain-positions/words-in-certain-positions.html
|
|
125
125
|
- _includes/footer/index.html
|
|
126
|
+
- _includes/footer/unqFooter.html
|
|
126
127
|
- _includes/google-analytics.html
|
|
127
128
|
- _includes/head/index.html
|
|
128
129
|
- _includes/header/blogHeader.html
|