word-games-theme 1.2.4 → 1.2.5

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: 42813f93faac52780144775a18e064bcc13bc7d9e2db8ae925d54576b5e3fab4
4
- data.tar.gz: 5b2173d861cc684feaeebe819bad3a2b4dbc91bfd6e426da10f9fdb6c6136778
3
+ metadata.gz: 6daf6ea6bb19ede17cbf8ff6cd3997a7f4925b1ebaa5760f6319a8b24dcdae32
4
+ data.tar.gz: 0e1134d4d20b53db8d0a57c8070d856600b90aa5bb6cdd9f886a5c05855bf818
5
5
  SHA512:
6
- metadata.gz: ae469ec5dcd8705f514cb81710037f394c6fdd057775845531c6e08865d0828b5c89cf73017daba36a1401d2769fa20a5d2f9f83395ce3fa60b4a4b1d45761f0
7
- data.tar.gz: f99defa385cec607cd11f05cb776b4a29c5b163a9f8c5abf0e4b436db3766603824a73e20c7916621817598ab024eee3b33176ce70709f7c2f22930b8b231dd9
6
+ metadata.gz: d66d47997843038a00de44789ad7e143063c3164c11947d4a7a28c8a7a543df039bb4726e99c76fc603fc2299820c37770e67177c4859a862f88fd619704cd61
7
+ data.tar.gz: 458cc7b2385e3dfcbea4846513273056d2e599c142bd01c1844f97d4fc2001eb6a541e6fa3ef9d07b268e486a8adcc6f86ee80c615959f7e020c26840df3d24d
@@ -52,37 +52,37 @@
52
52
  {%- if forloop.index == 1 -%}
53
53
 
54
54
  {%- if site.name == "wordswithletters" -%}
55
- <h1 style="font-size: 18px;">
55
+ <h4 class="{{item.x}}-letter" role="heading" style="font-size: 18px;">
56
56
  Top scoring {{item.x}} letter words with letters <span class="joinString">{{item.letter}}</span> for
57
57
  {{item.gameName}}
58
- </h1>
58
+ </h4>
59
59
 
60
60
  {%- endif -%}
61
61
 
62
62
 
63
63
  {%- if site.name == "wordfinders" -%}
64
- <h1 style="font-size: 18px;">
64
+ <h4 class="{{item.x}}-letter-words-heading" style="font-size: 18px;">
65
65
  {{item.x}} letter words with highest score for {{item.gameName}} containing letters
66
66
  <span class="joinString">{{item.letter }}</span> using {{item.x}} letter word finder
67
- </h1>
67
+ </h4>
68
68
  {%- endif -%}
69
69
 
70
70
  {%- if site.name == "wordscramblers" -%}
71
- <h1 style="font-size: 18px;">
71
+ <h4 class="{{item.x}}-letter-words-heading" style="font-size: 18px;">
72
72
  Top scoring {{item.x}} letter words for {{item.gameName}} containing letters
73
73
  <span class="joinString">{{item.letter}}</span>
74
74
  using our {{item.x}} letter
75
75
  word scrambler
76
- </h1>
76
+ </h4>
77
77
  {%- endif -%}
78
78
 
79
79
  {%- if site.name == "wordunscramblerss" -%}
80
- <h1 style="font-size: 18px;">
80
+ <h4 class="{{item.x}}-letter-words-heading" style="font-size: 18px;">
81
81
  {{item.x}} letter words with highest score for {{item.gameName}} with letters
82
82
  <span class="joinString">{{item.letter}}</span>
83
83
  using our {{item.x}} letter
84
84
  word unscrambler
85
- </h1>
85
+ </h4>
86
86
 
87
87
  {%- endif -%}
88
88
  {%- endif -%}
@@ -1,27 +1,65 @@
1
1
  <head>
2
- {% assign favicon = site.favicon %}
3
- {%- assign seo_description = page.description | default: page.excerpt | default: site.description -%}
4
- {%- if seo_description -%}
5
- {%- assign seo_description = seo_description | markdownify | strip_html | strip_newlines | escape_once -%}
2
+ {% assign favicon = site.favicon %} {%- assign seo_description =
3
+ page.description | default: page.content | markdownify | strip_html |
4
+ truncatewords: 50 | default: page.excerpt | default: site.description -%} {%-
5
+ if seo_description -%} {%- assign seo_description = seo_description |
6
+ markdownify | strip_html | strip_newlines | escape_once -%} {%- endif -%} {%-
7
+ if page.date -%} {%- assign og_type = "article" -%} {%- else -%} {%- assign
8
+ og_type = "website" -%} {%- endif -%}
9
+ {%- assign title = page.title | split: ' ' -%}
10
+ {%- assign newtitle = '' %}
11
+ {% for operation in title %}
12
+ {%- if forloop.first -%}
13
+ {% assign word = operation | capitalize %}
14
+ {% assign newtitle = newtitle | append : word %}
15
+ {% assign newtitle = newtitle | append : " " %}
16
+ {%- else -%}
17
+ {% assign word = operation %}
18
+ {%- if forloop.last -%}
19
+ {% assign newtitle = newtitle | append : word %}
20
+ {%- else -%}
21
+ {% assign newtitle = newtitle | append : word %}
22
+ {% assign newtitle = newtitle | append : " " %}
23
+ {%- endif -%}
6
24
  {%- endif -%}
7
- {%- if page.date -%}
8
- {%- assign og_type = "article" -%}
25
+ {% endfor %}
26
+ {%- assign description = description | split: ' ' -%}
27
+ {% assign pagedescription = '' %}
28
+ {% for operation in description %}
29
+ {%- if forloop.first -%}
30
+ {% assign word = operation | capitalize %}
31
+ {% assign pagedescription = pagedescription | append : word %}
32
+ {% assign pagedescription = pagedescription | append : " " %}
9
33
  {%- else -%}
10
- {%- assign og_type = "website" -%}
34
+ {% assign word = operation %}
35
+ {%- if forloop.last -%}
36
+ {% assign pagedescription = pagedescription | append : word %}
37
+ {%- else -%}
38
+ {% assign pagedescription = pagedescription | append : word %}
39
+ {% assign pagedescription = pagedescription | append : " " %}
40
+ {%- endif -%}
11
41
  {%- endif -%}
12
- <meta charset="UTF-8">
13
- <link rel="shortcut icon" href="{{favicon}}">
14
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
15
- <meta name="keywords" content="{{site.keyboard}}">
16
- <meta name="description" content="{{ seo_description | slice: 0, 155 }}">
17
- <meta name="og:description" content="{{ seo_description | slice: 0, 155 }}">
18
- <meta property="og:title" content="{{ page.title | default: site.title }}">
19
- <meta property="og:type" content="{{og_type}}">
20
- <meta property="og:locale" content="en_US">
21
- <meta property="og:site_name" content="{{site.name}}">
22
- <meta property="og:url" content="{{site.url | append: page.url}}">
23
- <meta name="author" content="{{ site.author_name }}">
24
- <title>{{page.title}}</title>
42
+ {% endfor %}
43
+ {%- assign title = newtitle -%}
44
+ {%- assign description = pagedescription-%}
45
+
46
+ <meta charset="UTF-8" />
47
+ <link rel="shortcut icon" href="{{favicon}}" />
48
+ <link rel="canonical" href="{{site.url | append: page.url}}" />
49
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
50
+ <meta name="keywords" content="{{site.keyboard}}" />
51
+ <meta name="description" content="{{ seo_description | slice: 0, 155 }}" />
52
+ <meta name="og:description" content="{{ seo_description | slice: 0, 155 }}" />
53
+ <meta property="og:title" content="{{ title | default: site.title }}" />
54
+ <meta property="og:type" content="{{og_type}}" />
55
+ <meta property="og:locale" content="en_US" />
56
+ <meta property="og:site_name" content="{{site.name}}" />
57
+ <meta property="og:url" content="{{site.url | append: page.url}}" />
58
+ <meta name="author" content="{{ site.author_name }}" />
59
+ <title>{{title}}</title>
60
+
61
+
62
+
25
63
  <link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
26
64
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" />
27
65
  <link rel="stylesheet" href="{{'/assets/css/blog.css' | relative_url }}">
@@ -25,10 +25,11 @@
25
25
  {% for entry in dataToShow.featureList %}
26
26
  <div class="col-md-8 my-3 mx-auto">
27
27
  <div class="card-body h-100">
28
- <img src="{{ entry.fa_class }}" width="25px"></img>
29
- <h5 class="card-title">
28
+ <img src="{{ entry.fa_class }}" loading="lazy" height="25px" width="25px"
29
+ alt="{{entry.feature_heading}}"></img>
30
+ <h3 class="card-title">
30
31
  {{ entry.feature_heading }}
31
- </h5>
32
+ </h3>
32
33
  <p class="card-text" style="color: #a7a7a7;
33
34
  font-size: 14px;">{{ entry.feature_text}}</p>
34
35
  </div>
@@ -38,10 +39,11 @@
38
39
  {% for entry in dataToShow.featureList %}
39
40
  <div class="col-lg-4 col-md-6 my-3">
40
41
  <div class="card-body h-100">
41
- <img src="{{ entry.fa_class }}" width="25px"></img>
42
- <h5 class="card-title">
42
+ <img src="{{ entry.fa_class }}" loading="lazy" height="25px" width="25px"
43
+ alt="{{entry.feature_heading}}"></img>
44
+ <h3 class="card-title">
43
45
  {{ entry.feature_heading }}
44
- </h5>
46
+ </h3>
45
47
  <p class="card-text" style="color: #a7a7a7;
46
48
  font-size: 14px;">{{ entry.feature_text}}</p>
47
49
  </div>
@@ -26,14 +26,14 @@
26
26
  {% if site.MonumetricID and page.url != '/' %}
27
27
  {% for entry in dataToShow.faqList %}
28
28
  <div class="col-md-8 mx-auto pt-5">
29
- <p class="meduim-text2 text-center mb-0">{{entry.Question}}</p>
30
- <p class="meduim-text text-center mb-0">{{entry.Answer}}</p>
29
+ <h3 class="meduim-text2 text-center mb-0">{{entry.Question}}</h2>
30
+ <p class="meduim-text text-center mb-0">{{entry.Answer}}</p>
31
31
  </div>
32
32
  {% endfor %}
33
33
  {%- else -%}
34
34
  {% for entry in dataToShow.faqList %}
35
35
  <div class="col-md-6 pt-5">
36
- <p class="meduim-text2 mb-0">{{entry.Question}}</p>
36
+ <h3 class="meduim-text2 mb-0">{{entry.Question}}</h3>
37
37
  <p class="meduim-text mb-0">{{entry.Answer}}</p>
38
38
  </div>
39
39
  {% endfor %}
@@ -5,7 +5,7 @@
5
5
  <div class="row">
6
6
  <div class="col-lg-8 mx-auto">
7
7
  {%- if site.posts.size>0 -%}
8
- <h1 class="related_post_heading text-center">Recent Posts</h1>
8
+ <h2 class="related_post_heading text-center">Recent Posts</h2>
9
9
  {%- endif -%}
10
10
  <div class="row">
11
11
  {% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
@@ -47,7 +47,7 @@
47
47
  </div>
48
48
  {%- else -%}
49
49
  {%- if site.posts.size>0 -%}
50
- <h1 class="related_post_heading">Recent Posts</h1>
50
+ <h2 class="related_post_heading">Recent Posts</h2>
51
51
  {%- endif -%}
52
52
  <div class="row">
53
53
  {% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
data/_includes/seo.html CHANGED
@@ -31,9 +31,11 @@
31
31
  {% endif %}
32
32
 
33
33
  {% unless page.layout == 'post' %}
34
- <meta name="description" content="{{ dataToShow.meta }}">
35
- <meta name="og:description" content="{{ dataToShow.meta }}">
36
- <meta property="og:title" content="{{ dataToShow.title }}">
34
+ <meta name="description" content="{{ dataToShow.meta | default: page.description | default:
35
+ site.description }}">
36
+ <meta name="og:description" content="{{ dataToShow.meta | default: page.description | default:
37
+ site.description }}">
38
+ <meta property="og:title" content="{{ dataToShow.title | default:page.title | default: site.title }}">
37
39
  {% endunless%}
38
40
 
39
41
  {% if page.layout == 'post'%}
@@ -1,4 +1,5 @@
1
- <html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
2
3
  {%- include head/index.html -%}
3
4
 
4
5
  <body>
data/_layouts/blog.html CHANGED
@@ -1,4 +1,5 @@
1
- <html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
2
3
 
3
4
  {% include custom-head.html %}
4
5
 
@@ -35,7 +36,7 @@
35
36
  <div class="card h-100">
36
37
  <a href="{{ post.url }}">
37
38
  <img src="{{ post.image }}" loading="lazy" height="215px" width="100%"
38
- class="card-img-top" alt="">
39
+ class="card-img-top" alt="{{post.title}}">
39
40
  </a>
40
41
  <div class="card-body">
41
42
  <a href="{{ post.url }}" class="anchor_link">
@@ -75,7 +76,7 @@
75
76
  <div class="card h-100">
76
77
  <a href="{{ post.url }}">
77
78
  <img src="{{ post.image }}" loading="lazy" height="215px" width="100%" class="card-img-top"
78
- alt="">
79
+ alt="{{post.title}}">
79
80
  </a>
80
81
  <div class="card-body">
81
82
  <a href="{{ post.url }}" class="anchor_link">
data/_layouts/page.html CHANGED
@@ -1,4 +1,5 @@
1
- <html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
2
3
  {%- include head/index.html -%}
3
4
 
4
5
  <style>
data/_layouts/page2.html CHANGED
@@ -1,4 +1,5 @@
1
- <html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
2
3
  {%- include head/index.html -%}
3
4
 
4
5
  <style>
data/_layouts/post.html CHANGED
@@ -1,4 +1,5 @@
1
- <html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
2
3
  {% include custom-head.html %}
3
4
  <style>
4
5
  p {
@@ -1,4 +1,5 @@
1
- <html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
2
3
  {%- include head/index.html -%}
3
4
  <style>
4
5
  .main_row {
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.2.4
4
+ version: 1.2.5
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-04-19 00:00:00.000000000 Z
11
+ date: 2022-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll