appscms-tools-theme 1.4.8 → 1.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/blog/blog.json +268 -268
- data/_data/rating/rating.json +1 -1
- data/_includes/Rating/rating.html +66 -65
- data/_includes/author_bio.html +3 -2
- data/_includes/cssfile/links.html +7 -8
- data/_includes/custom-head.html +10 -19
- data/_includes/customblog/recentposts.html +3 -2
- data/_includes/customblog/relatedposts.html +6 -4
- data/_includes/feature.html +4 -2
- data/_includes/fileformat/comparisonfiles.html +139 -133
- data/_includes/fileformat/fileformatdetail.html +91 -88
- data/_includes/fileformat/fileinfoformat.html +3 -3
- data/_includes/footer/index.html +4 -3
- data/_includes/head/index.html +7 -6
- data/_includes/header/blogHeader.html +4 -2
- data/_includes/header/index.html +86 -82
- data/_includes/postbox.html +6 -4
- data/_includes/script.html +17 -12
- data/_includes/section/recent_posts.html +33 -32
- data/_includes/section/related_categories_post.html +7 -5
- data/_layouts/blog.html +8 -4
- data/_layouts/download.html +214 -184
- data/_layouts/feature.html +10 -6
- data/_layouts/fileInfo.html +24 -22
- data/_layouts/home.html +11 -7
- data/_layouts/post.html +2 -1
- metadata +2 -2
data/_layouts/fileInfo.html
CHANGED
|
@@ -5,34 +5,36 @@
|
|
|
5
5
|
<!DOCTYPE html>
|
|
6
6
|
<html lang="{{fileinfoData.htmlLangAtt}}">
|
|
7
7
|
{% include head/index.html %}
|
|
8
|
+
|
|
8
9
|
<body>
|
|
9
10
|
{% include header/index.html %}
|
|
10
11
|
<div class="file-info-page-wrap container">
|
|
11
12
|
<div class="row">
|
|
12
|
-
<div class="col-lg-11 mx-auto text-left">
|
|
13
|
+
<div class="col-lg-11 mx-auto text-left">
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
</div>
|
|
15
|
+
<div class=" mt-5">
|
|
16
|
+
{%- if fileinfoData.H1 -%}
|
|
17
|
+
<h1 class="file-info-h1 mb-2">{{fileinfoData.H1}}</h1>
|
|
18
|
+
{%- endif -%}
|
|
19
|
+
{%- if fileinfoData.H2 -%}
|
|
20
|
+
<h2 class="file-info-h2 mb-4">{{fileinfoData.H2}}</h2>
|
|
21
|
+
{%- endif -%}
|
|
22
|
+
{%- if fileinfoData.img -%}
|
|
23
|
+
<img {%- if site.crossorigin -%} crossorigin {%- endif -%} class="file-info-img w-100 h-100 "
|
|
24
|
+
src="{{fileinfoData.img}}" alt="">
|
|
25
|
+
{%- endif -%}
|
|
26
|
+
</div>
|
|
27
|
+
{%- if fileinfoData.display_formats -%}
|
|
28
|
+
<div>
|
|
29
|
+
{%- include fileformat/fileinfoformat.html -%}
|
|
30
|
+
</div>
|
|
31
|
+
{%- endif -%}
|
|
32
|
+
{% include footer/index.html %}
|
|
33
|
+
{% include script.html %}
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
34
36
|
|
|
35
|
-
</div>
|
|
37
|
+
</div>
|
|
36
38
|
</body>
|
|
37
39
|
|
|
38
40
|
</html>
|
data/_layouts/home.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
{% assign folder = page.folderName %}
|
|
4
4
|
{% assign homeData= site.data[folder][lang][file] %}
|
|
5
5
|
<!DOCTYPE html>
|
|
6
|
-
<html lang="{{
|
|
6
|
+
<html lang="{{page.lang}}">
|
|
7
7
|
{% include head/index.html %}
|
|
8
8
|
|
|
9
9
|
<body>
|
|
@@ -11,13 +11,15 @@
|
|
|
11
11
|
{%- if homeData.nofileupload -%}
|
|
12
12
|
<div class="alert alert-{{featureData.variant | default: 'warning'}} alert-dismissible fade show text-center"
|
|
13
13
|
role="alert">
|
|
14
|
-
<img src="/assets/secure.svg" height="23px" width="18px" alt="secure"
|
|
14
|
+
<img src="/assets/secure.svg" height="23px" width="18px" alt="secure" {%- if site.crossorigin -%} crossorigin
|
|
15
|
+
{%- endif -%}>
|
|
15
16
|
{%- if featureData.alertmsg -%}
|
|
16
17
|
{{featureData.alertmsg}}
|
|
17
18
|
{%- else -%}
|
|
18
19
|
We do not upload any files to server, hence your data is 100% secure.
|
|
19
20
|
{%- endif -%}
|
|
20
|
-
<img src="/assets/noserverupload.svg" height="23px" width="20px" alt="no server upload"
|
|
21
|
+
<img src="/assets/noserverupload.svg" height="23px" width="20px" alt="no server upload" {%- if site.crossorigin
|
|
22
|
+
-%} crossorigin {%- endif -%}>
|
|
21
23
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
22
24
|
<span aria-hidden="true">×</span>
|
|
23
25
|
</button>
|
|
@@ -30,7 +32,7 @@
|
|
|
30
32
|
<div class="div-cont feature-img mr-2">
|
|
31
33
|
{%- if homeData.img -%}
|
|
32
34
|
<img style=width:{{homeData.imgwidth}};height:{{homeData.imgheight}}; src="{{homeData.img}}"
|
|
33
|
-
alt="{{homeData.imgalt}}">
|
|
35
|
+
alt="{{homeData.imgalt}}" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
34
36
|
{%- endif -%}
|
|
35
37
|
</div>
|
|
36
38
|
</span>
|
|
@@ -48,7 +50,8 @@
|
|
|
48
50
|
<li style=background:{{product.color}} class="home-feature-box">
|
|
49
51
|
<div class="home-inner-box">
|
|
50
52
|
<div class="div-cont feature-img" height="36px" width="36px">
|
|
51
|
-
<img src="{{product.icon}}" height="36px" width="36px" alt="star icon"
|
|
53
|
+
<img src="{{product.icon}}" height="36px" width="36px" alt="star icon" {%- if
|
|
54
|
+
site.crossorigin -%} crossorigin {%- endif -%}>
|
|
52
55
|
</div>
|
|
53
56
|
</div>
|
|
54
57
|
<div class="home-feature-desc">{{product.description}}</div><a class="home-feature-name"
|
|
@@ -68,7 +71,7 @@
|
|
|
68
71
|
{% for data in homeData.TEXTUAL_CONTENT %}
|
|
69
72
|
<div class="col-lg-4 col-md-6 my-4">
|
|
70
73
|
<div><img class="feature-card-img" height="48px" width="48px" loading="lazy" src="{{data.logoUrl}}"
|
|
71
|
-
alt={{data.header}}>
|
|
74
|
+
alt={{data.header}} {%- if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
72
75
|
<div class="feature-card-title">{{data.header | replace: "$variable", page.value}}</div>
|
|
73
76
|
<div class="feature-card-desc">{{data.content | replace: "$variable", page.value}}</div>
|
|
74
77
|
</div>
|
|
@@ -85,7 +88,8 @@
|
|
|
85
88
|
{%- if homeData.HOW_TO_CONTENT.logoImageUrl -%}
|
|
86
89
|
<div class="how-to-img-wrapper "><img class="how-to-leftimg" loading="lazy" height="215px"
|
|
87
90
|
width="100%" src="{{homeData.HOW_TO_CONTENT.logoImageUrl}}"
|
|
88
|
-
alt="{{homeData.HOW_TO_CONTENT.logoImageAlt}}"
|
|
91
|
+
alt="{{homeData.HOW_TO_CONTENT.logoImageAlt}}" {%- if site.crossorigin -%} crossorigin {%-
|
|
92
|
+
endif -%}>
|
|
89
93
|
</div>
|
|
90
94
|
{%- endif -%}
|
|
91
95
|
<div class="how-to-right">
|
data/_layouts/post.html
CHANGED
|
@@ -129,7 +129,8 @@
|
|
|
129
129
|
{%- include section/count.html -%}
|
|
130
130
|
{%- include section/alertbar.html -%}
|
|
131
131
|
{% include script.html %}
|
|
132
|
-
<script src="{{ '/assets/js/TopScroll.js' | relative_url }}"
|
|
132
|
+
<script src="{{ '/assets/js/TopScroll.js' | relative_url }}" {%- if site.crossorigin -%} crossorigin {%- endif
|
|
133
|
+
-%}></script>
|
|
133
134
|
</body>
|
|
134
135
|
|
|
135
136
|
</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: 1.
|
|
4
|
+
version: 1.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-
|
|
11
|
+
date: 2021-11-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|