word-games-theme 2.2.9 → 2.3.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 96cad48088447c9ec0140db951de1a25e8832acc6e15b4378ae60d9677ae0bf8
|
|
4
|
+
data.tar.gz: c6e2836da80c3d26ca9fda08fb4d2de19797bc02f851f67e621f00c81470b1aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f0d56b0de3958ad03d17f1cd0bff74947c88279378b3296c6a729548ee47748efb1090cf747ff489d35de5abc6a4dc3372dc470730052fe8bf3cdd4d84d2748
|
|
7
|
+
data.tar.gz: 79788395a53d18f68ca420d2e0064760d920cebe35d7c8dfdec8ddf2cd65d626827c3cac948865e063826e28be80bfbfb21b4bfaf1a626515e6ddb3f918fe7fa
|
|
@@ -20,31 +20,3 @@
|
|
|
20
20
|
</ul>
|
|
21
21
|
</div>
|
|
22
22
|
{%- endif -%}
|
|
23
|
-
<!-- <script defer>
|
|
24
|
-
const fetchShareCount = async () => {
|
|
25
|
-
try {
|
|
26
|
-
const faceBookShare = document.querySelector('#Facebook')
|
|
27
|
-
const twitterShare = document.querySelector('#Twitter')
|
|
28
|
-
const faceBookCount = await fetch(`https://graph.facebook.com/v10.0/?id=${window.location.href}&access_token=275277164346802|6255ba7980a711477b429c302cb009cd&fields=engagement`).then(res => res.json())
|
|
29
|
-
const twitterCount = await fetch(`https://counts.twitcount.com/counts.php?url=${window.location.href}`).then(res => res.json())
|
|
30
|
-
if (faceBookCount.engagement.share_count > 0) {
|
|
31
|
-
const FacebookInfo = document.createElement('span')
|
|
32
|
-
FacebookInfo.setAttribute("class", "social-count")
|
|
33
|
-
FacebookInfo.innerHTML = faceBookCount.engagement.share_count
|
|
34
|
-
faceBookShare.appendChild(FacebookInfo)
|
|
35
|
-
}
|
|
36
|
-
if (twitterCount > 0) {
|
|
37
|
-
const TwitterInfo = document.createElement('span')
|
|
38
|
-
TwitterInfo.setAttribute("class", "social-count")
|
|
39
|
-
TwitterInfo.innerHTML = twitterCount.count
|
|
40
|
-
twitterShare.appendChild(TwitterInfo)
|
|
41
|
-
}
|
|
42
|
-
} catch (error) {
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
window.addEventListener("load", () => {
|
|
47
|
-
fetchShareCount()
|
|
48
|
-
|
|
49
|
-
});
|
|
50
|
-
</script> -->
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<div class="container">
|
|
2
2
|
<div class="row">
|
|
3
3
|
<div class="col-lg-12 my-3">
|
|
4
|
-
<h3 class="text-center w-100 mb-5 infographics-title
|
|
4
|
+
<h3 class="text-center w-100 mb-5 infographics-title"><b>Other useful information</b>
|
|
5
5
|
</h3>
|
|
6
6
|
</div>
|
|
7
7
|
</div>
|
|
@@ -579,7 +579,7 @@ details>summary::after {
|
|
|
579
579
|
color: #11304e;
|
|
580
580
|
margin-bottom: 45px;
|
|
581
581
|
padding-top: 75px;
|
|
582
|
-
display:
|
|
582
|
+
display: block;
|
|
583
583
|
}
|
|
584
584
|
.card-body{
|
|
585
585
|
padding: 1rem !important;
|
|
@@ -722,7 +722,7 @@ summary::-webkit-details-marker {
|
|
|
722
722
|
}
|
|
723
723
|
|
|
724
724
|
.main-header {
|
|
725
|
-
background:
|
|
725
|
+
background: var(--primary-color);
|
|
726
726
|
height: auto !important;
|
|
727
727
|
}
|
|
728
728
|
|
|
@@ -810,14 +810,22 @@ summary::-webkit-details-marker {
|
|
|
810
810
|
}
|
|
811
811
|
|
|
812
812
|
.feature-highlight-title,
|
|
813
|
-
.howto
|
|
814
|
-
.infographics-title,
|
|
815
|
-
.related_post_heading {
|
|
813
|
+
.howto {
|
|
816
814
|
width: 120px !important;
|
|
817
815
|
font-size: 28px;
|
|
818
816
|
text-align: center;
|
|
819
817
|
margin: 0 auto
|
|
820
818
|
}
|
|
819
|
+
.related_post_heading {
|
|
820
|
+
font-size: 28px;
|
|
821
|
+
width: 100%;
|
|
822
|
+
text-align: center;
|
|
823
|
+
}
|
|
824
|
+
.infographics-title{
|
|
825
|
+
font-size: 28px;
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
|
|
821
829
|
.card-text{
|
|
822
830
|
font-size: 12px !important;
|
|
823
831
|
}
|
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: 2.
|
|
4
|
+
version: 2.3.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: 2023-12-
|
|
11
|
+
date: 2023-12-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|