word-games-theme 1.3.9 → 1.4.2
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/header/index.html +13 -18
- data/_includes/section/commonPage.html +16 -11
- data/assets/css/blog.css +6 -2
- data/assets/css/style.css +8 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fcf1a9918dae39018eb109138069209372d9ed2319aa92566d2dd3af074fb612
|
|
4
|
+
data.tar.gz: 9f4e7745334a4914f9cb93464d2abc67d3ce74ade435c5c895eedfc396151c49
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '048d9b540d189dffc22f510975b54c75fae7e92f7db3e2139834f493ac9c887fa500ab23c7468ed49f0923ded8a50233199ad8ba9c88f586037b9ef9096a447d'
|
|
7
|
+
data.tar.gz: bb43976c49f8541991f7c0ca2317ec4ee938e01d226ead7b49da5bb192e77b05241bccd91e7eecb758aa4db18ec59e02566ceef9f319acaa5e43d9e3a7e98275
|
data/_includes/header/index.html
CHANGED
|
@@ -6,50 +6,46 @@
|
|
|
6
6
|
<header id="header">
|
|
7
7
|
<!-- navigation startss -->
|
|
8
8
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: {{CustomColor.navbarBg}}">
|
|
9
|
-
|
|
10
9
|
<a class="navbar-brand" href="/" title="{{dataToShow.tooltip}}">
|
|
11
10
|
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}" style="width:35px; height:35px;">
|
|
12
11
|
</a>
|
|
13
|
-
|
|
14
12
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
|
|
15
13
|
<i class="bi bi-list bi-2x bars"></i>
|
|
16
14
|
</button>
|
|
17
15
|
|
|
18
16
|
{%- if site.MonumetricID -%}
|
|
19
17
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
20
|
-
<
|
|
21
|
-
<
|
|
18
|
+
<div class="navbar-nav">
|
|
19
|
+
<div class="nav-item">
|
|
22
20
|
<a class="nav-link" href="/blog">Blog</a>
|
|
23
|
-
</
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<li class="nav-item dropdown">
|
|
21
|
+
</div>
|
|
22
|
+
<div class="nav-item dropdown">
|
|
27
23
|
<a class="nav-link dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown"
|
|
28
24
|
aria-expanded="false">
|
|
29
25
|
More
|
|
30
26
|
</a>
|
|
31
27
|
{%- if dataToShow.megaMenu -%}
|
|
32
|
-
<
|
|
28
|
+
<div class="dropdown-menu top_tool_bar" aria-labelledby="dropdownMenuButton">
|
|
33
29
|
{%- for item in dataToShow.megaMenu.dropdown -%}
|
|
34
30
|
<div class="catPad mb-4">
|
|
35
|
-
<
|
|
31
|
+
<div style="margin: 0 0 20px;" class="text-muted">{{item.categoryName}}</div>
|
|
36
32
|
{%- for item in item.links -%}
|
|
37
|
-
<
|
|
33
|
+
<div style="margin:0 0 15px">
|
|
38
34
|
<a class="dropdown-item p-0" href="{{item.url}}">
|
|
39
35
|
{{item.name}}
|
|
40
36
|
</a>
|
|
41
|
-
</
|
|
37
|
+
</div>
|
|
42
38
|
{%- endfor -%}
|
|
43
39
|
</div>
|
|
44
40
|
{%- endfor -%}
|
|
45
|
-
</
|
|
41
|
+
</div>
|
|
46
42
|
{%- endif -%}
|
|
47
|
-
</
|
|
48
|
-
</
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
49
45
|
</div>
|
|
50
46
|
{% else %}
|
|
51
47
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
52
|
-
<
|
|
48
|
+
<div class="navbar-nav">
|
|
53
49
|
<li class="nav-item">
|
|
54
50
|
<a class="nav-link" href="/blog">Blog</a>
|
|
55
51
|
</li>
|
|
@@ -59,7 +55,6 @@
|
|
|
59
55
|
More
|
|
60
56
|
</a>
|
|
61
57
|
<div class="top_tool_bar dropdown-menu" aria-labelledby="navbarDropdown">
|
|
62
|
-
|
|
63
58
|
{% for item in dataToShow.more %}
|
|
64
59
|
<a class="dropdown-item" href="{{item.url}}">
|
|
65
60
|
{{item.name}}
|
|
@@ -68,7 +63,7 @@
|
|
|
68
63
|
|
|
69
64
|
</div>
|
|
70
65
|
</li>
|
|
71
|
-
</
|
|
66
|
+
</div>
|
|
72
67
|
</div>
|
|
73
68
|
{%- endif -%}
|
|
74
69
|
</nav>
|
|
@@ -15,13 +15,7 @@
|
|
|
15
15
|
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}" style="width:35px; height:35px;">
|
|
16
16
|
</a>
|
|
17
17
|
|
|
18
|
-
<!-- Ezoic - sidebar_floating_1 - sidebar_floating_1 -->
|
|
19
|
-
<div id="ezoic-pub-ad-placeholder-109"> </div>
|
|
20
|
-
<!-- End Ezoic - sidebar_floating_1 - sidebar_floating_1 -->
|
|
21
18
|
|
|
22
|
-
<!-- Ezoic - sidebar_floating_2 - sidebar_floating_2 -->
|
|
23
|
-
<div id="ezoic-pub-ad-placeholder-110"> </div>
|
|
24
|
-
<!-- End Ezoic - sidebar_floating_2 - sidebar_floating_2 -->
|
|
25
19
|
|
|
26
20
|
{%- if site.MonumetricID -%}
|
|
27
21
|
|
|
@@ -41,11 +35,11 @@
|
|
|
41
35
|
<div class="list-items-container">
|
|
42
36
|
<li class="list_cat_heading">{{item.categoryName}}</li>
|
|
43
37
|
{%- for item in item.links -%}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
38
|
+
<li class="list_cat_links">
|
|
39
|
+
<a class="list_cat_name dropdown-item" href="{{item.url}}">
|
|
40
|
+
{{item.name}}
|
|
41
|
+
</a>
|
|
42
|
+
</li>
|
|
49
43
|
{%- endfor -%}
|
|
50
44
|
</div>
|
|
51
45
|
{%- endfor -%}
|
|
@@ -159,6 +153,17 @@
|
|
|
159
153
|
</div>
|
|
160
154
|
</nav>
|
|
161
155
|
<!-- </header> -->
|
|
156
|
+
|
|
157
|
+
<!-- Ezoic - sidebar_floating_1 - sidebar_floating_1 -->
|
|
158
|
+
<div id="ezoic-pub-ad-placeholder-109"> </div>
|
|
159
|
+
<!-- End Ezoic - sidebar_floating_1 - sidebar_floating_1 -->
|
|
160
|
+
|
|
161
|
+
<!-- Ezoic - sidebar_floating_2 - sidebar_floating_2 -->
|
|
162
|
+
<div id="ezoic-pub-ad-placeholder-110"> </div>
|
|
163
|
+
<!-- End Ezoic - sidebar_floating_2 - sidebar_floating_2 -->
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
162
167
|
<div class="container" id="containerWd">
|
|
163
168
|
{%- if page.layout == "page2" -%}
|
|
164
169
|
|
data/assets/css/blog.css
CHANGED
|
@@ -573,15 +573,19 @@ header {
|
|
|
573
573
|
|
|
574
574
|
/* for ezoic ads css */
|
|
575
575
|
#ezoic-pub-ad-placeholder-109 {
|
|
576
|
-
position:
|
|
576
|
+
position: absolute;
|
|
577
577
|
top: 60px;
|
|
578
578
|
left: 0;
|
|
579
579
|
z-index: 99999;
|
|
580
|
+
/* width: 160px;
|
|
581
|
+
height: 100vh; */
|
|
580
582
|
}
|
|
581
583
|
|
|
582
584
|
#ezoic-pub-ad-placeholder-110 {
|
|
583
|
-
position:
|
|
585
|
+
position: absolute;
|
|
584
586
|
top: 60px;
|
|
585
587
|
right: 0;
|
|
586
588
|
z-index: 99999;
|
|
589
|
+
/* width: 160px;
|
|
590
|
+
height: 100vh; */
|
|
587
591
|
}
|
data/assets/css/style.css
CHANGED
|
@@ -584,15 +584,19 @@ header {
|
|
|
584
584
|
|
|
585
585
|
/* for ezoic ads css */
|
|
586
586
|
#ezoic-pub-ad-placeholder-109 {
|
|
587
|
-
position:
|
|
588
|
-
top:
|
|
587
|
+
position: absolute;
|
|
588
|
+
top: 60px;
|
|
589
589
|
left: 0;
|
|
590
590
|
z-index: 99999;
|
|
591
|
+
/* width: 160px;
|
|
592
|
+
height: 100vh; */
|
|
591
593
|
}
|
|
592
594
|
|
|
593
595
|
#ezoic-pub-ad-placeholder-110 {
|
|
594
|
-
position:
|
|
595
|
-
top:
|
|
596
|
+
position: absolute;
|
|
597
|
+
top: 60px;
|
|
596
598
|
right: 0;
|
|
597
599
|
z-index: 99999;
|
|
600
|
+
/* width: 160px;
|
|
601
|
+
height: 100vh; */
|
|
598
602
|
}
|
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.
|
|
4
|
+
version: 1.4.2
|
|
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-
|
|
11
|
+
date: 2022-09-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|