word-games-theme 0.4.6 → 0.4.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8b63c9fb5869a1658b63b481071de4c949f7201bc9b95398d4b9982d6faa93c
4
- data.tar.gz: 00d7b5aae113cb6c83a7be4a4cea7562d192f530b1bf0d1c25598472c2d9ceed
3
+ metadata.gz: 6a34672065a8959fa546dfd68934ad33fa80f1944873979228e2a0ef1c47ebe0
4
+ data.tar.gz: 909647e4fbc9623b1cb37617c1c2b7782b254d31d6ae5644f7712c4324a7c314
5
5
  SHA512:
6
- metadata.gz: 1e1714e1afe4bf114eb494ae3c8d5422cfacd15c468bed88bd78eee14eda04fb932a9c7433228d08948d2af4cc51b204a9ec9563608813c170d07f615b98728e
7
- data.tar.gz: 3dac62841544bf1805b56a84c0867b16bd83ea3ddd91da4a1004933d98284343393afa8e6813def12b6869d7ca363be1e7fbee6e421be32f9e90cc476c6ce47e
6
+ metadata.gz: 768f40f2e3c854b16fd05f04d56976d894200ff6d5f7e9fcd8434f8252013056fa1692018877698609b8faea4b6aaaa4cbc51c94500e86d7175a240a21a16aa5
7
+ data.tar.gz: 276e374196482fd14eb70172b269bedcd1d079501d15661407f93243bc0341d84a6c1865cf491ab113f983982a83043df57c40323d242a05925aedde0abe6b9b
@@ -54,12 +54,11 @@
54
54
  {%- endif -%}
55
55
  {%- if site.name == "wordscramblers" -%}
56
56
  <h1 class="content_sub_heading pb-0 m-0">
57
-
58
57
  All possible high scoring words from scrambled letters {{dataToShow.letter | capitalize }} which you
59
58
  can find
60
59
  using our
61
- unscramble {{dataToShow.x}}
62
- letter tool are as following
60
+ {{dataToShow.x}}
61
+ letter scrambler tool are as following
63
62
  </h1>
64
63
  {%- endif -%}
65
64
  {%- if site.name == "wordunscramblerss" -%}
@@ -0,0 +1,72 @@
1
+ <style>
2
+ .inner-dropdown {
3
+ display: flex;
4
+ justify-content: space-evenly;
5
+ }
6
+
7
+ .inner-dropdown li {
8
+ list-style: none;
9
+ padding: 5px 0;
10
+ text-align: left;
11
+ }
12
+
13
+ .anchor_links {
14
+ text-decoration: none;
15
+ color: white;
16
+ font-size: 13px;
17
+ }
18
+
19
+ .anchor_links:hover {
20
+ text-decoration: underline !important;
21
+ color: white;
22
+ }
23
+
24
+ @media(max-width:768px) {
25
+ .inner-dropdown {
26
+ flex-direction: column;
27
+ }
28
+ }
29
+ </style>
30
+ <div class="main_row row py-5 mx-0 mt-5" style="background: #262626;">
31
+ <div class="col-md-11 mx-auto">
32
+ <ul>
33
+ <div class="inner-dropdown">
34
+ <div class="catPad mb-4">
35
+ <li class="text-muted" style=" font-size: 13px">Recommended Pages</li>
36
+ {%- for item in page.recomendURLS limit: 10 -%}
37
+ {% assign Url = item[0]%}
38
+ <li class="list-unstyled">
39
+ <a class="anchor_links" href="/{{Url}}">
40
+ {{ Url | replace: '-', ' ' }}
41
+ </a>
42
+ </li>
43
+ {%- endfor -%}
44
+
45
+ </div>
46
+ <div class="catPad mb-4">
47
+ <li class="text-muted" style=" font-size: 13px">Users Also Visited</li>
48
+
49
+ {%- for item in page.randomURLS limit: 25 -%}
50
+ {% assign Url = item[0]%}
51
+ <li class="list-unstyled">
52
+ <a class="anchor_links" href="/{{Url}}">
53
+ {{ Url | replace: '-', ' ' }}
54
+ </a>
55
+ </li>
56
+ {%- endfor -%}
57
+ </div>
58
+ </ul>
59
+ </div>
60
+ </div>
61
+
62
+ <div class="row m-0 py-3" style="background-color: #000;">
63
+ <div class="col-12">
64
+ <div class="d-flex justify-content-between px-md-5 px-0 footer__flexbox">
65
+ <p class="m-0 text-white">{{site.copyright_text}}</p>
66
+ <p class="m-0"><a class="anchor_links" href="/privacy-policy">Privacy Policy</a>
67
+ <a class="anchor_links" href="/terms-and-conditions">| Terms of Use</a>
68
+ </p>
69
+ </div>
70
+ </div>
71
+ </div>
72
+ </div>
@@ -7,10 +7,8 @@
7
7
 
8
8
  {{content}}
9
9
 
10
-
11
10
  {% include autogenerated/footer.html %}
12
11
 
13
-
14
12
  <script src=" https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
15
13
  <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
16
14
  </body>
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: 0.4.6
4
+ version: 0.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - manpreet-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-17 00:00:00.000000000 Z
11
+ date: 2021-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -105,6 +105,7 @@ files:
105
105
  - _includes/author_bio.html
106
106
  - _includes/authors/authors.html
107
107
  - _includes/autogenerated/content.html
108
+ - _includes/autogenerated/footer.html
108
109
  - _includes/custom-head.html
109
110
  - _includes/disqus_comments.html
110
111
  - _includes/filterWords/index.html