appscms-tools-theme 0.5.1 → 0.5.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/_data/customcdns/customcdns.yml +0 -0
- data/_data/feature/en/compress-pdf.json +4 -0
- data/_includes/cssfile/links.html +8 -0
- data/_includes/custom-head.html +0 -1
- data/_includes/footer/index.html +0 -2
- data/_includes/head/index.html +7 -5
- data/_includes/header/blogHeader.html +0 -4
- data/_includes/header/index.html +0 -2
- data/_includes/script.html +9 -11
- data/_layouts/blog.html +0 -2
- data/_layouts/feature.html +7 -16
- data/_layouts/home.html +0 -7
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 342176673b85765d56e9f8327384cb9760e3108b2860256373b9de5c2eda5a1c
|
|
4
|
+
data.tar.gz: adff4cbc3e898f01d6c69e5302c667b67b1007042a57c5a3c93033065bc63e88
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5d0b3fc227e920979383fd7a07b68cfaef4cd217ec031bdec4bbcceff3dab9366440f8a504d66b274b857343e35f57319775d8cccb0311106636d55c329e248
|
|
7
|
+
data.tar.gz: 143f0df6d1c01182af9c6dfb0c3315389d4ab826fc2bb7f01f008dffe37d6c375d125afcb2e63091acb461d0a715dcb1599f06d12ee15e69241b74a48bee091e
|
|
File without changes
|
data/_includes/custom-head.html
CHANGED
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
<meta property="og:url" content="{{site.url | append: page.url}}">
|
|
23
23
|
<meta name="author" content="{{ site.author_name }}">
|
|
24
24
|
<title>{{page.title}}</title>
|
|
25
|
-
<!-- fonts -->
|
|
26
25
|
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
|
|
27
26
|
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
|
|
28
27
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
|
data/_includes/footer/index.html
CHANGED
data/_includes/head/index.html
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
{% assign description = dataToShow.META | replace:"$variable", page.value | default: site.description %}
|
|
8
8
|
{% assign keywords = dataToShow.keywords %}
|
|
9
9
|
{% assign favicon = site.favicon %}
|
|
10
|
+
{{site.weburl}}
|
|
10
11
|
<meta charset="utf-8">
|
|
11
12
|
<link rel="shortcut icon" href="{{favicon}}">
|
|
12
13
|
<meta name="viewport" content="width=device-width">
|
|
@@ -18,7 +19,10 @@
|
|
|
18
19
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
|
|
19
20
|
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
|
|
20
21
|
<link rel="canonical" href="{{site.url}}">
|
|
21
|
-
<
|
|
22
|
+
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700" rel="stylesheet">
|
|
23
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" />
|
|
24
|
+
<link rel="stylesheet" href="/assets/css/tools.css">
|
|
25
|
+
<meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}">
|
|
22
26
|
<meta property="og:title" content="{{title}}">
|
|
23
27
|
<meta property="og:description" content="{{description}}">
|
|
24
28
|
<meta property="og:type" content="website">
|
|
@@ -28,10 +32,8 @@
|
|
|
28
32
|
<meta data-rh="true" property="twitter:url" content="{{site.url | append: page.url}}">
|
|
29
33
|
<meta data-rh="true" name="twitter:title" content="{{title}}">
|
|
30
34
|
<meta data-rh="true" name="twitter:description" content="{{description}}">
|
|
31
|
-
<meta data-rh="true" name="twitter:image:src" content="{{site.url}}
|
|
32
|
-
|
|
33
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" />
|
|
34
|
-
<link rel="stylesheet" href="/assets/css/tools.css">
|
|
35
|
+
<meta data-rh="true" name="twitter:image:src" content="{{site.url}}{{favicon}}">
|
|
36
|
+
{% include cssfile/links.html %}
|
|
35
37
|
<script type="application/ld+json">
|
|
36
38
|
{"@context": "https://schema.org","@graph": [
|
|
37
39
|
{%- if dataToShow.StructuredDataFaq -%}
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
<!-- header starts -->
|
|
2
1
|
<header id="header">
|
|
3
|
-
<!-- navigation startss -->
|
|
4
2
|
<nav class="navbar navbar-expand-lg navbar-dark bg-light mx-xl-4 py-3">
|
|
5
3
|
{%- assign navbar = site.data.blog.nav -%}
|
|
6
4
|
{% if navbar.navbarBrandText != "" %}
|
|
@@ -27,6 +25,4 @@
|
|
|
27
25
|
</ul>
|
|
28
26
|
</div>
|
|
29
27
|
</nav>
|
|
30
|
-
<!-- navbar close -->
|
|
31
28
|
</header>
|
|
32
|
-
<!-- header close -->
|
data/_includes/header/index.html
CHANGED
data/_includes/script.html
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
|
|
11
|
-
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
|
|
1
|
+
{% assign scriptData = site.data.[page.folderName][lang][file] %}
|
|
2
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
|
3
|
+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
|
|
4
|
+
{{site.data.customcdns.customcdns.jsfiles}}
|
|
5
|
+
{%- if scriptData.jsfilepaths -%}
|
|
6
|
+
{%- for path in scriptData.jsfilepaths -%}
|
|
7
|
+
<script src="{{path}}"></script>
|
|
8
|
+
{%- endfor -%}
|
|
9
|
+
{%- endif -%}
|
data/_layouts/blog.html
CHANGED
data/_layouts/feature.html
CHANGED
|
@@ -11,12 +11,17 @@
|
|
|
11
11
|
<div class="flex-container">
|
|
12
12
|
<div class="flex-class py-4 mt-4 mt-md-0 ">
|
|
13
13
|
<div class="d-flex justify-content-center align-items-center"><span class="fHhdVc">
|
|
14
|
-
<div class="div-cont feature-img mr-2"
|
|
14
|
+
<div class="div-cont feature-img mr-2">
|
|
15
|
+
{%- if featureData.img -%}
|
|
16
|
+
<img style=width:{{featureData.imgwidth}};height:{{featureData.imgheight}}; src="{{featureData.img}}" alt="{{featureData.imgalt}}">
|
|
17
|
+
{%- else -%}
|
|
18
|
+
<svg xmlns="http://www.w3.org/2000/svg"
|
|
15
19
|
xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 36 36" fill="#000">
|
|
16
20
|
<path
|
|
17
21
|
d="M6,6 L9,18 L6,30 L18,27 L30,30 L27,18 L30,6 L18,9 L6,6 Z M3,3 L18,6.75 L33,3 L29.25,18 L33,33 L18,29.25 L3,33 L6.75,18 L3,3 Z">
|
|
18
22
|
</path>
|
|
19
|
-
</svg
|
|
23
|
+
</svg>
|
|
24
|
+
{%- endif -%} </div>
|
|
20
25
|
</span>
|
|
21
26
|
<h1 class="feature-h1">{{featureData.H1 | replace: "$variable", page.value}}</h1>
|
|
22
27
|
</div>
|
|
@@ -32,7 +37,6 @@
|
|
|
32
37
|
style=background:{{featureData.color}};min-height:{{featureData.height}};width:{{featureData.width}}>
|
|
33
38
|
<div class="box-border"></div>
|
|
34
39
|
<div class="content-box">
|
|
35
|
-
<!-- <input type="file" id="__picker-input" multiple="" accept="application/pdf,.pdf,application/vnd.openxmlformats-officedocument.wordprocessingml.document,.docx,application/msword,.doc,application/vnd.openxmlformats-officedocument.presentationml.presentation,.pptx,application/vnd.ms-powerpoint,.ppt,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,.xlsx,application/vnd.ms-excel,.xls,image/bmp,.bmp,image/jpeg,.jpg,.jpeg,image/png,.png,image/tiff,.tif,.tiff" class="sc-1oqtgb8-0 fqzcVW"> -->
|
|
36
40
|
{{content}}
|
|
37
41
|
</div>
|
|
38
42
|
</div>
|
|
@@ -40,12 +44,7 @@
|
|
|
40
44
|
</div>
|
|
41
45
|
</div>
|
|
42
46
|
</div>
|
|
43
|
-
|
|
44
|
-
<!-- </div> -->
|
|
45
47
|
</div>
|
|
46
|
-
<!-- Uploader End -->
|
|
47
|
-
|
|
48
|
-
<!-- Feature/Texual content start -->
|
|
49
48
|
<div class="container mt-4">
|
|
50
49
|
<div class="row px-0">
|
|
51
50
|
{% for data in featureData.TEXTUAL_CONTENT %}
|
|
@@ -81,10 +80,6 @@
|
|
|
81
80
|
</div>
|
|
82
81
|
</div>
|
|
83
82
|
</div>
|
|
84
|
-
|
|
85
|
-
<!-- </div> -->
|
|
86
|
-
<!-- How to section End -->
|
|
87
|
-
<!-- FAQ section start -->
|
|
88
83
|
<div class="container">
|
|
89
84
|
<div class="row">
|
|
90
85
|
<div class="col-md-8 mx-auto">
|
|
@@ -109,13 +104,9 @@
|
|
|
109
104
|
</div>
|
|
110
105
|
|
|
111
106
|
</div>
|
|
112
|
-
<!-- FAQ section End -->
|
|
113
|
-
<!-- Footer -->
|
|
114
107
|
{%- include share/socialshare.html -%}
|
|
115
108
|
{% include footer/index.html %}
|
|
116
109
|
{% include script.html %}
|
|
117
|
-
|
|
118
|
-
<!-- Footer End -->
|
|
119
110
|
</body>
|
|
120
111
|
|
|
121
112
|
</html>
|
data/_layouts/home.html
CHANGED
|
@@ -78,10 +78,6 @@
|
|
|
78
78
|
</div>
|
|
79
79
|
|
|
80
80
|
{%- endif -%}
|
|
81
|
-
|
|
82
|
-
<!-- </div> -->
|
|
83
|
-
<!-- How to section End -->
|
|
84
|
-
<!-- FAQ section start -->
|
|
85
81
|
{%- if homeData.FAQ -%}
|
|
86
82
|
<div class="container">
|
|
87
83
|
<div class="row">
|
|
@@ -108,12 +104,9 @@
|
|
|
108
104
|
|
|
109
105
|
</div>
|
|
110
106
|
{%- endif -%}
|
|
111
|
-
|
|
112
107
|
{%- include share/socialshare.html -%}
|
|
113
|
-
<!-- Footer -->
|
|
114
108
|
{% include footer/index.html %}
|
|
115
109
|
{% include script.html %}
|
|
116
|
-
<!-- Footer End -->
|
|
117
110
|
</body>
|
|
118
111
|
|
|
119
112
|
</html>
|
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: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-03-
|
|
11
|
+
date: 2021-03-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -68,6 +68,7 @@ files:
|
|
|
68
68
|
- _data/blog/nav.json
|
|
69
69
|
- _data/blog/share.yml
|
|
70
70
|
- _data/contact/en/contact.json
|
|
71
|
+
- _data/customcdns/customcdns.yml
|
|
71
72
|
- _data/disclaimer/en/disclaimer.json
|
|
72
73
|
- _data/feature/en/compress-pdf.json
|
|
73
74
|
- _data/feature/en/split-pdf.json
|
|
@@ -84,6 +85,7 @@ files:
|
|
|
84
85
|
- _data/privacy/en/privacyPolicy.json
|
|
85
86
|
- _data/termAndCondition/en/termAndCondition.json
|
|
86
87
|
- _includes/author_bio.html
|
|
88
|
+
- _includes/cssfile/links.html
|
|
87
89
|
- _includes/custom-head.html
|
|
88
90
|
- _includes/disqus_comments.html
|
|
89
91
|
- _includes/dropdown/langdropdown.html
|