appscms-tools-theme 1.8.8 → 1.9.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -14,75 +14,75 @@
14
14
  {%- if fileData.size>0 -%}
15
15
 
16
16
  <li class="file-li">
17
- <h2 class="feature-h1 text-left my-4">{{fileData.Format}}</h2>
18
- {%- if fileData.fileImg -%}
19
- <img src="{{fileData.fileImg }}" alt="img" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
20
- {%- endif -%}
21
- <ol class="file-info-item-list">
22
- {%- if fileData.Pros -%}
23
- <li>
24
- <div>
25
- <div class="info-title">Pros</div>
26
- <div>{{fileData.Pros}}</div>
27
- </div>
28
- </li>
17
+ <h1 class="feature-h1 text-left my-4">{{fileData.Format}}</h3>
18
+ {%- if fileData.fileImg -%}
19
+ <img src="{{fileData.fileImg }}" alt="img" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
29
20
  {%- endif -%}
30
- {%- if fileData.Cons -%}
31
- <li>
32
- <div>
33
- <div class="info-title">Cons</div>
34
- <div>{{fileData.Cons}}</div>
35
- </div>
36
- </li>
37
- {%- endif -%}
38
- {%- if fileData.BasicInformation -%}
39
- <li>
40
- <div>
41
- <div class="info-title">Basic Information</div>
42
- <div>{{fileData.BasicInformation}}</div>
43
- </div>
44
- </li>
21
+ <ol class="file-info-item-list">
22
+ {%- if fileData.Pros -%}
23
+ <li>
24
+ <div>
25
+ <div class="info-title">Pros</div>
26
+ <div>{{fileData.Pros}}</div>
27
+ </div>
28
+ </li>
29
+ {%- endif -%}
30
+ {%- if fileData.Cons -%}
31
+ <li>
32
+ <div>
33
+ <div class="info-title">Cons</div>
34
+ <div>{{fileData.Cons}}</div>
35
+ </div>
36
+ </li>
37
+ {%- endif -%}
38
+ {%- if fileData.BasicInformation -%}
39
+ <li>
40
+ <div>
41
+ <div class="info-title">Basic Information</div>
42
+ <div>{{fileData.BasicInformation}}</div>
43
+ </div>
44
+ </li>
45
45
 
46
- {%- endif -%}
47
- {%- if fileData.DetailedInformation -%}
48
- <li>
49
- <div>
50
- <div class="info-title">Detailed Information</div>
51
- <div>{{fileData.DetailedInformation}}</div>
52
- </div>
53
- </li>
46
+ {%- endif -%}
47
+ {%- if fileData.DetailedInformation -%}
48
+ <li>
49
+ <div>
50
+ <div class="info-title">Detailed Information</div>
51
+ <div>{{fileData.DetailedInformation}}</div>
52
+ </div>
53
+ </li>
54
54
 
55
- {%- endif -%}
56
- {%- if fileData.Softwaresused -%}
57
- <div>
58
- <div>Platforms Supported</div>
59
- <div class="d-flex flex-wrap ">
60
- {%- for item in fileData.Softwaresused -%}
61
- <ul class="pl-0 pr-md-5">
62
- <li><b>{{item.platform}}</b> </li>
63
- <div
64
- class="pl-0 d-flex flex-wrap justify-content-between softwares-section flex-column ">
65
- {%- for data in item.softwares -%}
66
- <div class="d-flex mb-3">
67
- {%- if data.image -%}
68
- <img src={{data.image}} alt="software" loading='lazy' {%- if site.crossorigin
69
- -%} crossorigin {%- endif -%}>
70
- {%- endif -%}
71
- <div>
72
- <a class="d-block software-name" href="{{data.link}}">
73
- <div>{{data.name}}</div>
74
- </a>
75
- <div class="software-value">{{data.type}}</div>
55
+ {%- endif -%}
56
+ {%- if fileData.Softwaresused -%}
57
+ <div>
58
+ <div>Platforms Supported</div>
59
+ <div class="d-flex flex-wrap ">
60
+ {%- for item in fileData.Softwaresused -%}
61
+ <ul class="pl-0 pr-md-5">
62
+ <li><b>{{item.platform}}</b> </li>
63
+ <div
64
+ class="pl-0 d-flex flex-wrap justify-content-between softwares-section flex-column ">
65
+ {%- for data in item.softwares -%}
66
+ <div class="d-flex mb-3">
67
+ {%- if data.image -%}
68
+ <img src={{data.image}} alt="software" loading='lazy' {%- if
69
+ site.crossorigin -%} crossorigin {%- endif -%}>
70
+ {%- endif -%}
71
+ <div>
72
+ <a class="d-block software-name" href="{{data.link}}">
73
+ <div>{{data.name}}</div>
74
+ </a>
75
+ <div class="software-value">{{data.type}}</div>
76
+ </div>
76
77
  </div>
78
+ {%- endfor -%}
77
79
  </div>
78
- {%- endfor -%}
79
- </div>
80
- </ul>
81
- {%- endfor -%}
80
+ </ul>
81
+ {%- endfor -%}
82
+ </div>
82
83
  </div>
83
- </div>
84
- {%- endif -%}
85
- </ol>
84
+ {%- endif -%}
85
+ </ol>
86
86
 
87
87
  </li>
88
88
 
@@ -11,8 +11,8 @@
11
11
  {%- if scriptData.jsfilepaths -%}
12
12
  {%- for path in scriptData.jsfilepaths -%}
13
13
  <script defer="defer" src="{{path}}" data-folderName="{{page.folderName}}" data-lang="{{page.lang}}"
14
- data-fileName="{{page.fileName}}" data-tool="{{page.tool}}" {%- if site.crossorigin -%} crossorigin {%- endif
15
- -%}></script>
14
+ data-fileName="{{page.fileName}}" data-tool="{{page.tool}}" data-permalink="{{page.permalink}}" {%- if
15
+ site.crossorigin -%} crossorigin {%- endif -%}></script>
16
16
  {%- endfor -%}
17
17
  {%- endif -%}
18
18
  {%- if scriptData.jscdns -%}
@@ -0,0 +1,59 @@
1
+ {% assign file = page.fileName %}
2
+ {% assign lang = page.lang %}
3
+ {% assign folder = page.folderName %}
4
+ {% assign featureData= site.data[folder][lang][file] %}
5
+ <!DOCTYPE html>
6
+ <html>
7
+ {% include head/index.html %}
8
+
9
+ <body>
10
+ {% include header/index.html %}
11
+ <div class="flex-container pb-3">
12
+ <div class="flex-class py-4 mt-4 mt-md-0 ">
13
+ <div class="d-flex justify-content-center align-items-center"><span class="fHhdVc">
14
+ <div class="div-cont feature-img mr-2">
15
+ <img class="features-img" src="" alt="" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
16
+ </div>
17
+ </span>
18
+ <h1 class="feature-h1"></h1>
19
+ </div>
20
+ <h2 class="feature-h2"></h2>
21
+ </div>
22
+ </div>
23
+ {%- if site.noFeatureBox == true -%}
24
+ <div class="feature-content-box">
25
+ {{content}}
26
+ </div>
27
+ {%- else -%}
28
+ {%- if page.noBox == true -%}
29
+ <div class="feature-content-box">
30
+ {{content}}
31
+ </div>
32
+ {%- else -%}
33
+ <div class="box-padding">
34
+ <div class="d-flex" id="__cond-922051">
35
+ <div class="flex-container">
36
+ <div class="flex-class">
37
+ <div class="d-flex flex-column">
38
+ <div class="box"
39
+ style=background:{{featureData.color}};min-height:{{featureData.height}};width:{{featureData.width}}>
40
+ <div class="box-border"></div>
41
+ <div class="content-box">
42
+ {{content}}
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </div>
47
+ </div>
48
+ </div>
49
+ </div>
50
+ {%- endif -%}
51
+ {%- endif -%}
52
+ {% include footer/index.html %}
53
+ {% include script.html %}
54
+
55
+ <script defer src="/assets/js/featureResult.js" data-foldername="{{page.folderName}}"
56
+ data-lang="{{page.lang}}"></script>
57
+ </body>
58
+
59
+ </html>
@@ -0,0 +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
+
86
+ </html>
@@ -0,0 +1,32 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ {% include head/index.html %}
4
+
5
+ <body>
6
+ {% include header/index.html %}
7
+
8
+ <div class="flex-container mb-1">
9
+ <div class="flex-class py-5">
10
+ <div class="d-flex justify-content-center align-items-center"><span class="fHhdVc">
11
+ <div class="div-cont feature-img mr-2">
12
+ <img class="home-img" src="" alt="" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
13
+ </div>
14
+ </span>
15
+ <h1 class="home-top-h1"></h1>
16
+ </div>
17
+ <h2 class="home-top-h2"></h2>
18
+ </div>
19
+ </div>
20
+
21
+ <div>
22
+ {{content}}
23
+ </div>
24
+
25
+ {% include footer/index.html %}
26
+ {% include script.html %}
27
+
28
+ <script defer src="/assets/js/homeResult.js" data-foldername="{{page.folderName}}"
29
+ data-lang="{{page.lang}}"></script>
30
+ </body>
31
+
32
+ </html>