appscms-tools-theme 1.8.9 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,159 +1,159 @@
1
- {% assign file = page.fileName %}
2
- {% assign lang = page.lang %}
3
- {% assign folder = page.folderName %}
4
- {% assign accessData= site.data[folder][lang][file] %}
5
- {% assign compareFiles= accessData.compare_formats %}
6
- {%- for i in compareFiles -%}
7
- {%- if forloop.index ==1 -%}
8
- {%- assign item = i | downcase -%}
9
- {%- assign firstFile = site.data.files[lang][item] -%}
10
- {%- endif -%}
11
- {%- if forloop.index == 2 -%}
12
- {%- assign item = i | downcase -%}
13
- {%- assign secondFile = site.data.files[lang][item] -%}
14
- {%- endif -%}
15
- {%- endfor -%}
16
- {%- if firstFile and secondFile -%}
17
- {%- if firstFile.Format or secondFile.Format -%}
18
- <h2 class="feature-h1 text-left my-4">
19
- {%- if accessData.compareheading -%}
20
- {{accessData.compareheading}}
21
- {%- else -%}
22
- Comparison of {{firstFile.Format}} and
23
- {{secondFile.Format}} file format
24
- {%- endif -%}
25
- </h2>
26
- {%- endif -%}
27
- <table class="table table-bordered ">
28
- <tbody>
29
-
30
- {%- if firstFile.Format or secondFile.Format -%}
31
- <tr>
32
- <th scope="row">Format</th>
33
- <td>{{firstFile.Format}}</td>
34
- <td>{{secondFile.Format}}</td>
35
- </tr>
36
- {%- endif -%}
37
- {%- if firstFile.ShortName or secondFile.ShortName -%}
38
- <tr>
39
- <th scope="row">Short Name</th>
40
- <td>{{firstFile.ShortName}}</td>
41
- <td>{{secondFile.ShortName}}</td>
42
- </tr>
43
- {%- endif -%}
44
-
45
- {%- if firstFile.FullName or secondFile.FullName -%}
46
- <tr>
47
- <th scope="row">Full Name</th>
48
- <td>{{firstFile.FullName}}</td>
49
- <td>{{secondFile.FullName}}</td>
50
- </tr>
51
- {%- endif -%}
52
- {%- if firstFile.Category or secondFile.Category -%}
53
- <tr>
54
- <th scope="row">Category</th>
55
- <td>{{firstFile.Category}}</td>
56
- <td>{{secondFile.Category}}</td>
57
- </tr>
58
- {%- endif -%}
59
- {%- if firstFile.Pros or secondFile.Pros -%}
60
- <tr>
61
- <th scope="row">Pros</th>
62
- <td>{{firstFile.Pros}}</td>
63
- <td>{{secondFile.Pros}}</td>
64
- </tr>
65
- {%- endif -%}
66
- {%- if firstFile.Cons or secondFile.Cons -%}
67
- <tr>
68
- <th scope="row">Cons</th>
69
- <td>{{firstFile.Cons}}</td>
70
- <td>{{secondFile.Cons}}</td>
71
- </tr>
72
- {%- endif -%}
73
- {%- if firstFile.Createdby or secondFile.Createdby -%}
74
- <tr>
75
- <th scope="row">Created by</th>
76
- <td> <a class="software-name" href="{{firstFile.CreatedbyLink}}"> {{firstFile.Createdby}}</a></td>
77
- <td> <a class="software-name" href="{{secondFile.CreatedbyLink}}"> {{secondFile.Createdby}}</a></td>
78
- </tr>
79
- {%- endif -%}
80
- {%- if firstFile.CreatedInYear or secondFile.CreatedInYear -%}
81
- <tr>
82
- <th scope="row">Created in </th>
83
- <td>{{firstFile.CreatedInYear}}</td>
84
- <td>{{secondFile.CreatedInYear}}</td>
85
- </tr>
86
- {%- endif -%}
87
- {%- if firstFile.BasicInformation or secondFile.BasicInformation -%}
88
- <tr>
89
- <th scope="row">Basic information</th>
90
- <td>{{firstFile.BasicInformation}}</td>
91
- <td>{{secondFile.BasicInformation}}</td>
92
- </tr>
93
- {%- endif -%}
94
- {%- if firstFile.DetailedInformation or secondFile.DetailedInformation -%}
95
- <tr>
96
- <th scope="row">Detailed information</th>
97
- <td>{{firstFile.DetailedInformation}}</td>
98
- <td>{{secondFile.DetailedInformation}}</td>
99
- </tr>
100
- {%- endif -%}
101
- {%- if firstFile.Softwaresused or secondFile.Softwaresused -%}
102
- <tr>
103
- <th scope="row">Platform Supported</th>
104
- <td>
105
- {%- for item in firstFile.Softwaresused -%}
106
- <ul class="pl-0">
107
- <li><b>{{item.platform}}</b> </li>
108
- <div class="pl-0 d-flex flex-wrap justify-content-between softwares-section flex-column ">
109
- {%- for data in item.softwares -%}
110
- <div class="d-flex mb-3">
111
- {%- if data.image -%}
112
- <img src={{data.image}} alt="software" loading='lazy' {%- if site.crossorigin -%}
113
- crossorigin {%- endif -%}>
114
- {%- endif -%}
115
- <div>
116
- <a class="d-block software-name" href="{{data.link}}">
117
- <div>{{data.name}}</div>
118
- </a>
119
- <div class="software-value">{{data.type}}</div>
120
- </div>
121
- </div>
122
-
123
- {%- endfor -%}
124
- </div>
125
- </ul>
126
- {%- endfor -%}
127
- </td>
128
- <td>
129
- {%- for item in secondFile.Softwaresused -%}
130
- <ul>
131
- <li><b>{{item.platform}}</b> </li>
132
- <div class="pl-0 d-flex flex-wrap justify-content-between softwares-section flex-column ">
133
- {%- for data in item.softwares -%}
134
- <div class="d-flex mb-3">
135
- {%- if data.image -%}
136
- <img src={{data.image}} alt="software" loading='lazy' {%- if site.crossorigin -%}
137
- crossorigin {%- endif -%}>
138
- {%- endif -%}
139
- <div>
140
- <a class="d-block software-name" href="{{data.link}}">
141
- <div>{{data.name}}</div>
142
- </a>
143
- <div class="software-value">{{data.type}}</div>
144
- </div>
145
- </div>
146
-
147
- {%- endfor -%}
148
- </div>
149
- </ul>
150
- {%- endfor -%}
151
- </td>
152
- </tr>
153
- {%- endif -%}
154
-
155
- </tbody>
156
- </table>
157
- {%- else -%}
158
-
1
+ {% assign file = page.fileName %}
2
+ {% assign lang = page.lang %}
3
+ {% assign folder = page.folderName %}
4
+ {% assign accessData= site.data[folder][lang][file] %}
5
+ {% assign compareFiles= accessData.compare_formats %}
6
+ {%- for i in compareFiles -%}
7
+ {%- if forloop.index ==1 -%}
8
+ {%- assign item = i | downcase -%}
9
+ {%- assign firstFile = site.data.files[lang][item] -%}
10
+ {%- endif -%}
11
+ {%- if forloop.index == 2 -%}
12
+ {%- assign item = i | downcase -%}
13
+ {%- assign secondFile = site.data.files[lang][item] -%}
14
+ {%- endif -%}
15
+ {%- endfor -%}
16
+ {%- if firstFile and secondFile -%}
17
+ {%- if firstFile.Format or secondFile.Format -%}
18
+ <h2 class="feature-h1 text-left my-4">
19
+ {%- if accessData.compareheading -%}
20
+ {{accessData.compareheading}}
21
+ {%- else -%}
22
+ Comparison of {{firstFile.Format}} and
23
+ {{secondFile.Format}} file format
24
+ {%- endif -%}
25
+ </h2>
26
+ {%- endif -%}
27
+ <table class="table table-bordered ">
28
+ <tbody>
29
+
30
+ {%- if firstFile.Format or secondFile.Format -%}
31
+ <tr>
32
+ <th scope="row">Format</th>
33
+ <td>{{firstFile.Format}}</td>
34
+ <td>{{secondFile.Format}}</td>
35
+ </tr>
36
+ {%- endif -%}
37
+ {%- if firstFile.ShortName or secondFile.ShortName -%}
38
+ <tr>
39
+ <th scope="row">Short Name</th>
40
+ <td>{{firstFile.ShortName}}</td>
41
+ <td>{{secondFile.ShortName}}</td>
42
+ </tr>
43
+ {%- endif -%}
44
+
45
+ {%- if firstFile.FullName or secondFile.FullName -%}
46
+ <tr>
47
+ <th scope="row">Full Name</th>
48
+ <td>{{firstFile.FullName}}</td>
49
+ <td>{{secondFile.FullName}}</td>
50
+ </tr>
51
+ {%- endif -%}
52
+ {%- if firstFile.Category or secondFile.Category -%}
53
+ <tr>
54
+ <th scope="row">Category</th>
55
+ <td>{{firstFile.Category}}</td>
56
+ <td>{{secondFile.Category}}</td>
57
+ </tr>
58
+ {%- endif -%}
59
+ {%- if firstFile.Pros or secondFile.Pros -%}
60
+ <tr>
61
+ <th scope="row">Pros</th>
62
+ <td>{{firstFile.Pros}}</td>
63
+ <td>{{secondFile.Pros}}</td>
64
+ </tr>
65
+ {%- endif -%}
66
+ {%- if firstFile.Cons or secondFile.Cons -%}
67
+ <tr>
68
+ <th scope="row">Cons</th>
69
+ <td>{{firstFile.Cons}}</td>
70
+ <td>{{secondFile.Cons}}</td>
71
+ </tr>
72
+ {%- endif -%}
73
+ {%- if firstFile.Createdby or secondFile.Createdby -%}
74
+ <tr>
75
+ <th scope="row">Created by</th>
76
+ <td> <a class="software-name" href="{{firstFile.CreatedbyLink}}"> {{firstFile.Createdby}}</a></td>
77
+ <td> <a class="software-name" href="{{secondFile.CreatedbyLink}}"> {{secondFile.Createdby}}</a></td>
78
+ </tr>
79
+ {%- endif -%}
80
+ {%- if firstFile.CreatedInYear or secondFile.CreatedInYear -%}
81
+ <tr>
82
+ <th scope="row">Created in </th>
83
+ <td>{{firstFile.CreatedInYear}}</td>
84
+ <td>{{secondFile.CreatedInYear}}</td>
85
+ </tr>
86
+ {%- endif -%}
87
+ {%- if firstFile.BasicInformation or secondFile.BasicInformation -%}
88
+ <tr>
89
+ <th scope="row">Basic information</th>
90
+ <td>{{firstFile.BasicInformation}}</td>
91
+ <td>{{secondFile.BasicInformation}}</td>
92
+ </tr>
93
+ {%- endif -%}
94
+ {%- if firstFile.DetailedInformation or secondFile.DetailedInformation -%}
95
+ <tr>
96
+ <th scope="row">Detailed information</th>
97
+ <td>{{firstFile.DetailedInformation}}</td>
98
+ <td>{{secondFile.DetailedInformation}}</td>
99
+ </tr>
100
+ {%- endif -%}
101
+ {%- if firstFile.Softwaresused or secondFile.Softwaresused -%}
102
+ <tr>
103
+ <th scope="row">Platform Supported</th>
104
+ <td>
105
+ {%- for item in firstFile.Softwaresused -%}
106
+ <ul class="pl-0">
107
+ <li><b>{{item.platform}}</b> </li>
108
+ <div class="pl-0 d-flex flex-wrap justify-content-between softwares-section flex-column ">
109
+ {%- for data in item.softwares -%}
110
+ <div class="d-flex mb-3">
111
+ {%- if data.image -%}
112
+ <img src={{data.image}} alt="software" loading='lazy' {%- if site.crossorigin -%}
113
+ crossorigin {%- endif -%}>
114
+ {%- endif -%}
115
+ <div>
116
+ <a class="d-block software-name" href="{{data.link}}">
117
+ <div>{{data.name}}</div>
118
+ </a>
119
+ <div class="software-value">{{data.type}}</div>
120
+ </div>
121
+ </div>
122
+
123
+ {%- endfor -%}
124
+ </div>
125
+ </ul>
126
+ {%- endfor -%}
127
+ </td>
128
+ <td>
129
+ {%- for item in secondFile.Softwaresused -%}
130
+ <ul>
131
+ <li><b>{{item.platform}}</b> </li>
132
+ <div class="pl-0 d-flex flex-wrap justify-content-between softwares-section flex-column ">
133
+ {%- for data in item.softwares -%}
134
+ <div class="d-flex mb-3">
135
+ {%- if data.image -%}
136
+ <img src={{data.image}} alt="software" loading='lazy' {%- if site.crossorigin -%}
137
+ crossorigin {%- endif -%}>
138
+ {%- endif -%}
139
+ <div>
140
+ <a class="d-block software-name" href="{{data.link}}">
141
+ <div>{{data.name}}</div>
142
+ </a>
143
+ <div class="software-value">{{data.type}}</div>
144
+ </div>
145
+ </div>
146
+
147
+ {%- endfor -%}
148
+ </div>
149
+ </ul>
150
+ {%- endfor -%}
151
+ </td>
152
+ </tr>
153
+ {%- endif -%}
154
+
155
+ </tbody>
156
+ </table>
157
+ {%- else -%}
158
+
159
159
  {%- endif -%}
@@ -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>
@@ -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>