appscms-tools-theme 1.8.7 → 1.8.8
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/_data/feature/en/compress-pdf.json +4 -4
- data/_includes/custom-head.html +38 -2
- data/_includes/head/index.html +36 -0
- data/_layouts/feature.html +20 -4
- data/_layouts/home.html +14 -2
- data/_layouts/post.html +2 -1
- 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: '08ddd022b740a2269e1609f63e90afc0642fdaa7a3e4ec0b7c188ec183b8904d'
|
|
4
|
+
data.tar.gz: 66eaade2a06868973405eaa0ddc33ac5981248ec4870a1fa25eeb26573269a2c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca1e70ef56b0b56e08adf7a2975c908ad3cb614d045da1d9c95aaca68cfe2656d85eec06598b26fd884d0b6562025cd8896ead189bbba518784a58d76f322a07
|
|
7
|
+
data.tar.gz: ee68ac47ac7056c82b61010e41faca46cc7f2a0851e602356e0f857b989bcae6dbca4af37eddd535270e8694aff189d289c5ed1808213441c492217e0ce01f98
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
"tags": [
|
|
9
9
|
"wordswithletters"
|
|
10
10
|
],
|
|
11
|
-
"H1": "
|
|
12
|
-
"H2": "
|
|
13
|
-
"TITLE": "
|
|
14
|
-
"META": "
|
|
11
|
+
"H1": "set alarm for $variable minutes from now",
|
|
12
|
+
"H2": "simplest online alarm clock to set alarms. Do not close browser tab.",
|
|
13
|
+
"TITLE": "set alarm for $variable minutes from now",
|
|
14
|
+
"META": "easiest way to set alarm for $variable minutes from now. Choose sound for alarm from multiple options.",
|
|
15
15
|
"keywords": "key1,key2,key3,key4",
|
|
16
16
|
"LABEL": "DOCX to PDF",
|
|
17
17
|
"nofileupload": true,
|
data/_includes/custom-head.html
CHANGED
|
@@ -6,6 +6,42 @@
|
|
|
6
6
|
markdownify | strip_html | strip_newlines | escape_once -%} {%- endif -%} {%-
|
|
7
7
|
if page.date -%} {%- assign og_type = "article" -%} {%- else -%} {%- assign
|
|
8
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 -%}
|
|
24
|
+
{%- endif -%}
|
|
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 : " " %}
|
|
33
|
+
{%- else -%}
|
|
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 -%}
|
|
41
|
+
{%- endif -%}
|
|
42
|
+
{% endfor %}
|
|
43
|
+
{%- assign title = newtitle -%}
|
|
44
|
+
{%- assign description = pagedescription-%}
|
|
9
45
|
<meta charset="UTF-8" />
|
|
10
46
|
<link rel="shortcut icon" href="{{favicon}}" />
|
|
11
47
|
<link rel="canonical" href="{{site.url | append: page.url}}" />
|
|
@@ -13,13 +49,13 @@
|
|
|
13
49
|
<meta name="keywords" content="{{site.keyboard}}" />
|
|
14
50
|
<meta name="description" content="{{ seo_description | slice: 0, 155 }}" />
|
|
15
51
|
<meta name="og:description" content="{{ seo_description | slice: 0, 155 }}" />
|
|
16
|
-
<meta property="og:title" content="{{
|
|
52
|
+
<meta property="og:title" content="{{ title | default: site.title }}" />
|
|
17
53
|
<meta property="og:type" content="{{og_type}}" />
|
|
18
54
|
<meta property="og:locale" content="en_US" />
|
|
19
55
|
<meta property="og:site_name" content="{{site.name}}" />
|
|
20
56
|
<meta property="og:url" content="{{site.url | append: page.url}}" />
|
|
21
57
|
<meta name="author" content="{{ site.author_name }}" />
|
|
22
|
-
<title>{{
|
|
58
|
+
<title>{{title}}</title>
|
|
23
59
|
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet" />
|
|
24
60
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" {%- if
|
|
25
61
|
site.crossorigin -%} crossorigin {%- endif -%} />
|
data/_includes/head/index.html
CHANGED
|
@@ -6,6 +6,42 @@
|
|
|
6
6
|
= dataToShow.META | replace:"$variable", page.value | default: page.description | default:
|
|
7
7
|
site.description %} {% assign keywords = dataToShow.keywords %} {% assign
|
|
8
8
|
favicon = site.favicon %}
|
|
9
|
+
{%- assign title = 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 -%}
|
|
24
|
+
{%- endif -%}
|
|
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 : " " %}
|
|
33
|
+
{%- else -%}
|
|
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 -%}
|
|
41
|
+
{%- endif -%}
|
|
42
|
+
{% endfor %}
|
|
43
|
+
{%- assign title = newtitle -%}
|
|
44
|
+
{%- assign description = pagedescription-%}
|
|
9
45
|
<meta charset="utf-8" />
|
|
10
46
|
<link rel="shortcut icon" href="{{favicon}}" />
|
|
11
47
|
<meta name="viewport" content="width=device-width" />
|
data/_layouts/feature.html
CHANGED
|
@@ -45,9 +45,25 @@
|
|
|
45
45
|
{%- endif -%}
|
|
46
46
|
</div>
|
|
47
47
|
</span>
|
|
48
|
-
|
|
48
|
+
{%- assign featureh1 = featureData.H1 | replace: "$variable", page.value -%}
|
|
49
|
+
<h1 class="feature-h1">{%- for word in featureh1-%}
|
|
50
|
+
{%- if forloop.first == true -%}
|
|
51
|
+
{{word | capitalize }}
|
|
52
|
+
{%- else -%}
|
|
53
|
+
{{word}}
|
|
54
|
+
{%- endif -%}
|
|
55
|
+
{%- endfor -%}</h1>
|
|
49
56
|
</div>
|
|
50
|
-
|
|
57
|
+
{%- assign featureh2 = featureData.H2 | replace: "$variable", page.value -%}
|
|
58
|
+
<h2 class="feature-h2">
|
|
59
|
+
{%- for word in featureh2 -%}
|
|
60
|
+
{%- if forloop.first == true -%}
|
|
61
|
+
{{word | capitalize }}
|
|
62
|
+
{%- else -%}
|
|
63
|
+
{{word}}
|
|
64
|
+
{%- endif -%}
|
|
65
|
+
{%- endfor -%}
|
|
66
|
+
</h2>
|
|
51
67
|
</div>
|
|
52
68
|
</div>
|
|
53
69
|
{%- if site.noFeatureBox == true -%}
|
|
@@ -142,8 +158,8 @@
|
|
|
142
158
|
<div class="row">
|
|
143
159
|
<div class="col-md-8 mx-auto">
|
|
144
160
|
<div class="faq">
|
|
145
|
-
<
|
|
146
|
-
Questions'}}</
|
|
161
|
+
<h3 class="feature-h1 text-center mb-4">{{featureData.faqheading | default: 'Frequently Asked
|
|
162
|
+
Questions'}}</h3>
|
|
147
163
|
<ul class="list-unstyled">
|
|
148
164
|
{% for data in featureData.FAQ %}
|
|
149
165
|
<li>
|
data/_layouts/home.html
CHANGED
|
@@ -37,9 +37,21 @@
|
|
|
37
37
|
{%- endif -%}
|
|
38
38
|
</div>
|
|
39
39
|
</span>
|
|
40
|
-
<h1 class="home-top-h1">{
|
|
40
|
+
<h1 class="home-top-h1">{%- for word in homeData.h1 -%}
|
|
41
|
+
{%- if forloop.first == true -%}
|
|
42
|
+
{{word | capitalize }}
|
|
43
|
+
{%- else -%}
|
|
44
|
+
{{word}}
|
|
45
|
+
{%- endif -%}
|
|
46
|
+
{%- endfor -%}</h1>
|
|
41
47
|
</div>
|
|
42
|
-
<h2 class="home-top-h2">{
|
|
48
|
+
<h2 class="home-top-h2">{%- for word in homeData.h2 -%}
|
|
49
|
+
{%- if forloop.first == true -%}
|
|
50
|
+
{{word | capitalize }}
|
|
51
|
+
{%- else -%}
|
|
52
|
+
{{word}}
|
|
53
|
+
{%- endif -%}
|
|
54
|
+
{%- endfor -%}</h2>
|
|
43
55
|
</div>
|
|
44
56
|
</div>
|
|
45
57
|
{%- endif -%}
|
data/_layouts/post.html
CHANGED
|
@@ -35,7 +35,8 @@
|
|
|
35
35
|
<div class="container">
|
|
36
36
|
<div class="row section-title-wrap">
|
|
37
37
|
<div class="col-md-12 mt-5">
|
|
38
|
-
|
|
38
|
+
|
|
39
|
+
<h1 class="display-4" style="font-weight: 900;">{{ title }}</h1>
|
|
39
40
|
</div>
|
|
40
41
|
</div>
|
|
41
42
|
<div class="row mt-5">
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appscms-tools-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-03-
|
|
11
|
+
date: 2022-03-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|