appscms-tools-theme 1.8.9 → 1.9.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -52,7 +52,8 @@
52
52
  {% include footer/index.html %}
53
53
  {% include script.html %}
54
54
 
55
- <script defer src="/js/featureResult.js" data-foldername="{{page.folderName}}" data-lang="{{page.lang}}"></script>
55
+ <script defer src="/assets/js/featureResult.js" data-foldername="{{page.folderName}}"
56
+ data-lang="{{page.lang}}"></script>
56
57
  </body>
57
58
 
58
59
  </html>
@@ -1,86 +1,86 @@
1
- {% assign file = page.fileName %}
2
- {% assign lang = page.lang %}
3
- {% assign folder = page.folderName %}
4
- {% assign fileinfoData= site.data[folder][lang][file] %}
5
- <!DOCTYPE html>
6
- <html lang="{{fileinfoData.htmlLangAtt}}">
7
- {% include head/index.html %}
8
-
9
- <body>
10
- {% include header/index.html %}
11
- <div class="file-comparison-page container">
12
- <div class="row">
13
- <div class="col-lg-9 mx-auto text-left">
14
-
15
- <div class=" mt-5">
16
- {%- if fileinfoData.H1 -%}
17
- <h1 class="">{{fileinfoData.H1}}</h1>
18
- {%- endif -%}
19
- {%- if fileinfoData.H2 -%}
20
- <h2 class="">{{fileinfoData.H2}}</h2>
21
- {%- endif -%}
22
- {%- if fileinfoData.img -%}
23
- <img class="mb-4" src="{{fileinfoData.img}}" alt="img" {%- if site.crossorigin -%} crossorigin {%-
24
- endif -%}>
25
- {%- endif -%}
26
- {%- if fileinfoData.summary -%}
27
- {%- for item in fileinfoData.summary -%}
28
- <p>{{item}}</p>
29
- {%- endfor -%}
30
- {%- endif -%}
31
- {%- if fileinfoData.detailedSummary -%}
32
- {%- for item in fileinfoData.detailedSummary -%}
33
- <h2>{{item.h2}}</h2>
34
- {%- for p in item.data -%}
35
- <p> {{p}}</p>
36
- {%- endfor -%}
37
- {%- endfor -%}
38
- {%- endif -%}
39
- </div>
40
- {%- if fileinfoData.compare_formats -%}
41
- <div>
42
- {%- include fileformat/Tabularcompariosn.html -%}
43
- </div>
44
- {%- endif -%}
45
- </div>
46
- </div>
47
-
48
- </div>
49
- <div class="container">
50
- {% include footer/index.html %}
51
-
52
- </div>
53
- {%- include adblocker.html -%}
54
- {% assign scriptData = site.data.[page.folderName][lang][file] %}
55
- {%- assign dataAtt = "data-folderName='$folderName' data-lang='$lang' data-fileName='$fileName' data-tool='$tool'"
56
- -%}
57
- {%- assign $folderName = '$folderName' -%}
58
- <script defer="defer" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" {%- if
59
- site.crossorigin -%} crossorigin {%- endif -%}></script>
60
- <script defer="defer" src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"
61
- integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous" {%-
62
- if site.crossorigin -%} crossorigin {%- endif -%}></script>
63
- {{site.data.customcdns.customcdns.jsfiles}}
64
- {%- if scriptData.jsfilepaths -%}
65
- {%- for path in scriptData.jsfilepaths -%}
66
- <script defer="defer" src="{{path}}" data-folderName="{{page.folderName}}" data-lang="{{page.lang}}"
67
- data-fileName="{{page.fileName}}" data-tool="{{page.tool}}" {%- if site.crossorigin -%} crossorigin {%- endif
68
- -%}></script>
69
- {%- endfor -%}
70
- {%- endif -%}
71
- {%- if scriptData.jscdns -%}
72
- {%- for item in scriptData.jscdns -%}
73
- {{item | replace:"$folderName", page.folderName | replace: "$fileName", page.fileName | replace: "$lang", page.lang
74
- |
75
- replace: "$tool", page.tool }}
76
- {%- endfor -%}
77
- {%- endif -%}
78
- <script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js"></script>
79
- <script>WebFont.load({ google: { families: ['Inter:200,300,400,500,600,700,800,900&display=swap'] } })</script>
80
- <link defer="defer" rel="stylesheet"
81
- href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
82
- integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
83
- crossorigin="anonymous" referrerpolicy="no-referrer" {%- if site.crossorigin -%} crossorigin {%- endif -%} />
84
- </body>
85
-
1
+ {% assign file = page.fileName %}
2
+ {% assign lang = page.lang %}
3
+ {% assign folder = page.folderName %}
4
+ {% assign fileinfoData= site.data[folder][lang][file] %}
5
+ <!DOCTYPE html>
6
+ <html lang="{{fileinfoData.htmlLangAtt}}">
7
+ {% include head/index.html %}
8
+
9
+ <body>
10
+ {% include header/index.html %}
11
+ <div class="file-comparison-page container">
12
+ <div class="row">
13
+ <div class="col-lg-9 mx-auto text-left">
14
+
15
+ <div class=" mt-5">
16
+ {%- if fileinfoData.H1 -%}
17
+ <h1 class="">{{fileinfoData.H1}}</h1>
18
+ {%- endif -%}
19
+ {%- if fileinfoData.H2 -%}
20
+ <h2 class="">{{fileinfoData.H2}}</h2>
21
+ {%- endif -%}
22
+ {%- if fileinfoData.img -%}
23
+ <img class="mb-4" src="{{fileinfoData.img}}" alt="img" {%- if site.crossorigin -%} crossorigin {%-
24
+ endif -%}>
25
+ {%- endif -%}
26
+ {%- if fileinfoData.summary -%}
27
+ {%- for item in fileinfoData.summary -%}
28
+ <p>{{item}}</p>
29
+ {%- endfor -%}
30
+ {%- endif -%}
31
+ {%- if fileinfoData.detailedSummary -%}
32
+ {%- for item in fileinfoData.detailedSummary -%}
33
+ <h2>{{item.h2}}</h2>
34
+ {%- for p in item.data -%}
35
+ <p> {{p}}</p>
36
+ {%- endfor -%}
37
+ {%- endfor -%}
38
+ {%- endif -%}
39
+ </div>
40
+ {%- if fileinfoData.compare_formats -%}
41
+ <div>
42
+ {%- include fileformat/Tabularcompariosn.html -%}
43
+ </div>
44
+ {%- endif -%}
45
+ </div>
46
+ </div>
47
+
48
+ </div>
49
+ <div class="container">
50
+ {% include footer/index.html %}
51
+
52
+ </div>
53
+ {%- include adblocker.html -%}
54
+ {% assign scriptData = site.data.[page.folderName][lang][file] %}
55
+ {%- assign dataAtt = "data-folderName='$folderName' data-lang='$lang' data-fileName='$fileName' data-tool='$tool'"
56
+ -%}
57
+ {%- assign $folderName = '$folderName' -%}
58
+ <script defer="defer" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" {%- if
59
+ site.crossorigin -%} crossorigin {%- endif -%}></script>
60
+ <script defer="defer" src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"
61
+ integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous" {%-
62
+ if site.crossorigin -%} crossorigin {%- endif -%}></script>
63
+ {{site.data.customcdns.customcdns.jsfiles}}
64
+ {%- if scriptData.jsfilepaths -%}
65
+ {%- for path in scriptData.jsfilepaths -%}
66
+ <script defer="defer" src="{{path}}" data-folderName="{{page.folderName}}" data-lang="{{page.lang}}"
67
+ data-fileName="{{page.fileName}}" data-tool="{{page.tool}}" {%- if site.crossorigin -%} crossorigin {%- endif
68
+ -%}></script>
69
+ {%- endfor -%}
70
+ {%- endif -%}
71
+ {%- if scriptData.jscdns -%}
72
+ {%- for item in scriptData.jscdns -%}
73
+ {{item | replace:"$folderName", page.folderName | replace: "$fileName", page.fileName | replace: "$lang", page.lang
74
+ |
75
+ replace: "$tool", page.tool }}
76
+ {%- endfor -%}
77
+ {%- endif -%}
78
+ <script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js"></script>
79
+ <script>WebFont.load({ google: { families: ['Inter:200,300,400,500,600,700,800,900&display=swap'] } })</script>
80
+ <link defer="defer" rel="stylesheet"
81
+ href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
82
+ integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
83
+ crossorigin="anonymous" referrerpolicy="no-referrer" {%- if site.crossorigin -%} crossorigin {%- endif -%} />
84
+ </body>
85
+
86
86
  </html>
data/_layouts/home.html CHANGED
@@ -56,40 +56,65 @@
56
56
  </div>
57
57
  {%- endif -%}
58
58
  {%- if homeData.features -%}
59
- <div class="flex-container">
60
- <div class="flex-class">
61
- <ul class="home-features">
62
- {% for product in homeData.features %}
63
- <li style=background:{{product.color}} class="home-feature-box">
64
- <div class="home-inner-box">
65
- <div class="div-cont feature-img" height="36px" width="36px">
66
- <img src="{{product.icon}}" height="36px" width="36px" alt="star icon" {%- if
67
- site.crossorigin -%} crossorigin {%- endif -%}>
68
- </div>
59
+ {%- if site.monumetricId -%}
60
+ <div class="container">
61
+ <div class="row">
62
+ <div class="col-md-9 mx-auto">
63
+ {%- endif -%}
64
+ <div class="flex-container">
65
+ <div class="flex-class">
66
+ <ul class="home-features">
67
+ {% for product in homeData.features %}
68
+ <li style=background:{{product.color}} class="home-feature-box">
69
+ <div class="home-inner-box">
70
+ <div class="div-cont feature-img" height="36px" width="36px">
71
+ <img src="{{product.icon}}" height="36px" width="36px" alt="star icon" {%- if
72
+ site.crossorigin -%} crossorigin {%- endif -%}>
73
+ </div>
74
+ </div>
75
+ <div class="home-feature-desc">{{product.description}}</div><a class="home-feature-name"
76
+ href="{{product.url}}">{{product.name}}</a>
77
+ </li>
78
+ {% endfor %}
79
+ </ul>
69
80
  </div>
70
- <div class="home-feature-desc">{{product.description}}</div><a class="home-feature-name"
71
- href="{{product.url}}">{{product.name}}</a>
72
- </li>
73
- {% endfor %}
74
- </ul>
81
+ </div>
82
+ {%- if site.monumetricId -%}
83
+ </div>
75
84
  </div>
76
85
  </div>
77
86
  {%- endif -%}
87
+ {%- endif -%}
78
88
  <div>
79
89
  {{content}}
80
90
  </div>
81
91
  {%- if homeData.TEXTUAL_CONTENT -%}
82
92
  <div class="container mt-4 mb-4">
83
93
  <div class="row px-0">
84
- {% for data in homeData.TEXTUAL_CONTENT %}
85
- <div class="col-lg-4 col-md-6 my-4">
86
- <div><img class="feature-card-img" height="48px" width="48px" loading="lazy" src="{{data.logoUrl}}"
87
- alt={{data.header}} {%- if site.crossorigin -%} crossorigin {%- endif -%}>
88
- <div class="feature-card-title">{{data.header | replace: "$variable", page.value}}</div>
89
- <div class="feature-card-desc">{{data.content | replace: "$variable", page.value}}</div>
94
+ {%- if site.monumetricId -%}
95
+ <div class="col-md-9 mx-auto">
96
+ <div class="row">
97
+ {%- endif -%}
98
+ {% for data in homeData.TEXTUAL_CONTENT %}
99
+ <div class="
100
+ {%- if site.monumetricId -%}
101
+ col-md-6 my-4
102
+ {%- else -%}
103
+ col-md-4 my-4
104
+ {%- endif -%}
105
+ ">
106
+ <div><img class="feature-card-img" height="48px" width="48px" loading="lazy"
107
+ src="{{data.logoUrl}}" alt={{data.header}} {%- if site.crossorigin -%} crossorigin {%-
108
+ endif -%}>
109
+ <div class="feature-card-title">{{data.header | replace: "$variable", page.value}}</div>
110
+ <div class="feature-card-desc">{{data.content | replace: "$variable", page.value}}</div>
111
+ </div>
112
+ </div>
113
+ {% endfor %}
114
+ {%- if site.monumetricId -%}
90
115
  </div>
91
116
  </div>
92
- {% endfor %}
117
+ {%- endif -%}
93
118
  </div>
94
119
  </div>
95
120
  {%- endif -%}
@@ -98,31 +123,40 @@
98
123
  <section class="how-to-section">
99
124
  <div class="container">
100
125
  <div class="row">
101
- <div class="col-md-6 order-0 ">
102
- {%- if homeData.HOW_TO_CONTENT.logoImageUrl -%}
103
- <div class="how-to-img-wrapper "><img class="how-to-leftimg" height="180px" width="300px"
104
- src="{{homeData.HOW_TO_CONTENT.logoImageUrl}}" loading="lazy"
105
- alt="{{homeData.HOW_TO_CONTENT.logoImageAlt | default: 'how to image' }}" {%- if
106
- site.crossorigin -%} crossorigin {%- endif -%}>
107
- </div>
108
- {%- endif -%}
109
- </div>
110
- <div class="col-md-6 order-1">
111
- <div class="how-to-right">
112
- <h3 class="how-to-title text-left">{{homeData.HOW_TO_CONTENT.heading | replace: "$variable",
113
- page.value}}</h3>
114
- <ol class="how-to-list">
115
- {% for data in homeData.HOW_TO_CONTENT.steps %}
126
+ {%- if site.monumetricId -%}
127
+ <div class="col-md-9 mx-auto">
128
+ <div class="row">
129
+ {%- endif -%}
130
+ <div class="col-md-6 order-0 ">
131
+ {%- if homeData.HOW_TO_CONTENT.logoImageUrl -%}
132
+ <div class="how-to-img-wrapper "><img class="how-to-leftimg" height="180px" width="300px"
133
+ src="{{homeData.HOW_TO_CONTENT.logoImageUrl}}" loading="lazy"
134
+ alt="{{homeData.HOW_TO_CONTENT.logoImageAlt | default: 'how to image' }}" {%- if
135
+ site.crossorigin -%} crossorigin {%- endif -%}>
136
+ </div>
137
+ {%- endif -%}
138
+ </div>
139
+ <div class="col-md-6 order-1">
140
+ <div class="how-to-right">
141
+ <h3 class="how-to-title text-left">{{homeData.HOW_TO_CONTENT.heading | replace:
142
+ "$variable",
143
+ page.value}}</h3>
144
+ <ol class="how-to-list">
145
+ {% for data in homeData.HOW_TO_CONTENT.steps %}
116
146
 
117
- <li id="step{{forloop.index}}" class="how-to-list-item">
118
- <span>{{forloop.index}}.</span>{{data |
119
- replace: "$variable",
120
- page.value}}
121
- </li>
122
- {% endfor %}
123
- </ol>
147
+ <li id="step{{forloop.index}}" class="how-to-list-item">
148
+ <span>{{forloop.index}}.</span>{{data |
149
+ replace: "$variable",
150
+ page.value}}
151
+ </li>
152
+ {% endfor %}
153
+ </ol>
154
+ </div>
155
+ </div>
156
+ {%- if site.monumetricId -%}
124
157
  </div>
125
158
  </div>
159
+ {%- endif -%}
126
160
  </div>
127
161
 
128
162
  </div>
@@ -145,9 +179,9 @@
145
179
  <div class="col-md-8 mx-auto">
146
180
  <div class="faq">
147
181
  {%- if homeData.FAQ.size>0 -%}
148
- <h2 class="feature-h1 text-center mb-4">{{homeData.faqheading | default: 'Frequently Asked
182
+ <h3 class="feature-h1 text-center mb-4">{{homeData.faqheading | default: 'Frequently Asked
149
183
  Questions'}}
150
- </h2>
184
+ </h3>
151
185
  {%- endif -%}
152
186
  <ul class="list-unstyled">
153
187
  {% for data in homeData.FAQ %}
@@ -25,7 +25,8 @@
25
25
  {% include footer/index.html %}
26
26
  {% include script.html %}
27
27
 
28
- <script defer src="/js/homeResult.js" data-foldername="{{page.folderName}}" data-lang="{{page.lang}}"></script>
28
+ <script defer src="/assets/js/homeResult.js" data-foldername="{{page.folderName}}"
29
+ data-lang="{{page.lang}}"></script>
29
30
  </body>
30
31
 
31
32
  </html>
data/_layouts/post.html CHANGED
@@ -34,13 +34,29 @@
34
34
  <section class="section_post">
35
35
  <div class="container">
36
36
  <div class="row section-title-wrap">
37
- <div class="col-md-12 mt-5">
37
+ <div class="
38
+ {%- if site.monumetricId -%}
39
+ col-8 mt-5 mx-auto
40
+ {%- else -%}
41
+ col-md-12 mt-5
42
+ {%- endif -%}
43
+
44
+
45
+ ">
38
46
 
39
47
  <h1 class="display-4" style="font-weight: 900;">{{ title }}</h1>
40
48
  </div>
41
49
  </div>
42
50
  <div class="row mt-5">
43
- <div class="col-md-8">
51
+ <div class="
52
+ {%- if site.monumetricId -%}
53
+ col-md-8 mx-auto
54
+ {%- else -%}
55
+ col-md-8
56
+ {%- endif -%}
57
+
58
+
59
+ ">
44
60
  {%- include authors/authors.html -%}
45
61
  {%- include postauthorbio.html -%}
46
62
  {% if page.author %}
@@ -52,7 +68,15 @@
52
68
 
53
69
  {%- include paginationPostPage.html -%}
54
70
  </div>
55
- <div class="col-md-4">
71
+ <div class="
72
+ {%- if site.monumetricId -%}
73
+ col-md-8 mx-auto
74
+ {%- else -%}
75
+ col-md-4
76
+ {%- endif -%}
77
+
78
+
79
+ ">
56
80
  <div class="mainThings">
57
81
  <div class="socialIons">
58
82
  <ul class="list-unstyled item-lists2">
@@ -120,7 +144,15 @@
120
144
  {% endif %}
121
145
  <div class="commentsection my-5">
122
146
  {%- if site.disqus.shortname -%}
123
- {%- include disqus_comments.html -%}
147
+ {%- if site.monumetricId -%}
148
+ <div class="row">
149
+ <div class="col-md-9 mx-auto">
150
+ {%- endif -%}
151
+ {%- include disqus_comments.html -%}
152
+ {%- if site.monumetricId -%}
153
+ </div>
154
+ </div>
155
+ {%- endif -%}
124
156
  {%- endif -%}
125
157
  </div>
126
158
  </div>