appscms-tools-theme 1.0.8 → 1.0.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 855f8283b6f35e7e622a945b4ac0ae9a763423cc311cad1b959c88aec3277f01
4
- data.tar.gz: 0c061236f1502504a522f60cdd27e3221b6d59d5f7e8076bf24a7479f26eaf47
3
+ metadata.gz: cb033d209391aeda0cbd7c807c8bb2a5cf19b1d5853e65bba1553ab9d5452b84
4
+ data.tar.gz: 31d32b61ad3464410f73917c11ae74ad2c3f3598eda411c1f5de3f91dbedd165
5
5
  SHA512:
6
- metadata.gz: fcae715d6089e12a1c2613768e9eb2ecd37205896073e41a300d257c8b82c6743f370d10c27df02e04b14a8a652a94a674015f9a373025f1415480d8cad2fae5
7
- data.tar.gz: 0b9e448d29ce770947c2ab65b196e9ca5ef4607db3a9c83a549a8c56bd02eb9ae00d6a2e2514a3ecf33d4c3254bf19d24afa791d35c409c616e10035e539106e
6
+ metadata.gz: bca51126250d57c246799f603524511409fd364c043c55c2674bdde90ec9a7f86416490bf7be67cd82302a0747fea63286d153649b3ee8e8c57bb7e5dcb8bcbe
7
+ data.tar.gz: cd7ac1600b858142ecdec6d57bbedc6256afce549a11533bb5ba56b25af08873e3033600ebb9e1d23a618bc1f50d655e16a948064cd9106e46888b76cf509d8e
@@ -1,11 +1,15 @@
1
1
  {
2
2
  "Language": "English",
3
3
  "htmlLangAtt": "en",
4
- "H1": "Set alarm for $variable minutes from now",
5
- "H2": "Simplest online alarm clock to set alarms. Do not close browser tab.",
4
+ "H1": "file format information to create human like created pages ",
5
+ "H2": "file format information to create human like created pages for file formats",
6
6
  "TITLE": "Set alarm for $variable minutes from now",
7
7
  "META": "Easiest way to set alarm for $variable minutes from now. Choose sound for alarm from multiple options.",
8
8
  "keywords": "key1,key2,key3,key4",
9
9
  "filelang": "en",
10
- "display_formats": ["JPG", "png"]
11
- }
10
+ "display_formats": [
11
+ "JPG",
12
+ "png"
13
+ ],
14
+ "img": "/assets/images/fileformat.webp"
15
+ }
@@ -0,0 +1,91 @@
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 filesData= accessData.display_formats %}
6
+
7
+ <div>
8
+ <div>
9
+ <ol class="pl-3">
10
+ {%- for i in filesData -%}
11
+ {%- assign item = i | downcase -%}
12
+ {%- assign fileData = site.data.files[accessData.filelang][item] -%}
13
+ {%- assign static = site.static_files -%}
14
+ {%- if fileData.size>0 -%}
15
+
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="">
20
+ {%- endif -%}
21
+ <img src="" alt="">
22
+ <ol class="file-info-item-list" >
23
+ {%- if fileData.Pros -%}
24
+ <li>
25
+ <div>
26
+ <div class="info-title" >Pros</div>
27
+ <div>{{fileData.Pros}}</div>
28
+ </div>
29
+ </li>
30
+ {%- endif -%}
31
+ {%- if fileData.Cons -%}
32
+ <li>
33
+ <div >
34
+ <div class="info-title" >Cons</div>
35
+ <div>{{fileData.Cons}}</div>
36
+ </div>
37
+ </li>
38
+ {%- endif -%}
39
+ {%- if fileData.BasicInformation -%}
40
+ <li>
41
+ <div >
42
+ <div class="info-title">Basic Information</div>
43
+ <div>{{fileData.BasicInformation}}</div>
44
+ </div>
45
+ </li>
46
+
47
+ {%- endif -%}
48
+ {%- if fileData.DetailedInformation -%}
49
+ <li>
50
+ <div >
51
+ <div class="info-title" >Detailed Information</div>
52
+ <div>{{fileData.DetailedInformation}}</div>
53
+ </div>
54
+ </li>
55
+
56
+ {%- endif -%}
57
+ {%- if fileData.Softwaresused -%}
58
+ <div>
59
+ <div >Platforms Supported</div>
60
+ <div class="d-flex flex-wrap " >
61
+ {%- for item in fileData.Softwaresused -%}
62
+ <ul class="pl-0 pr-md-5" >
63
+ <li><b>{{item.platform}}</b> </li>
64
+ <div 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' >
69
+ {%- endif -%}
70
+ <div >
71
+ <a class="d-block software-name" href="{{data.link}}"><div>{{data.name}}</div></a>
72
+ <div class="software-value" >{{data.type}}</div>
73
+ </div>
74
+ </div>
75
+ {%- endfor -%}
76
+ </div>
77
+ </ul>
78
+ {%- endfor -%}
79
+ </div>
80
+ </div>
81
+ {%- endif -%}
82
+ </ol>
83
+
84
+ </li>
85
+
86
+ {%- endif -%}
87
+ {%- endfor -%}
88
+ </ol>
89
+ </div>
90
+
91
+ </div>
@@ -7,17 +7,32 @@
7
7
  {% include head/index.html %}
8
8
  <body>
9
9
  {% include header/index.html %}
10
- {%- if fileinfoData.display_formats -%}
10
+ <div class="file-info-page-wrap container">
11
+ <div class="row">
12
+ <div class="col-lg-11 mx-auto text-left">
11
13
 
12
- <div class="container px-md-5 compare-table ">
13
- <div class="px-md-4">
14
- {%- include fileformat/fileformatdetail.html -%}
15
- </div>
14
+ <div class=" mt-5" >
15
+ {%- if fileinfoData.H1 -%}
16
+ <h1 class="file-info-h1 mb-2" >{{fileinfoData.H1}}</h1>
17
+ {%- endif -%}
18
+ {%- if fileinfoData.H2 -%}
19
+ <h2 class="file-info-h2 mb-4" >{{fileinfoData.H2}}</h2>
20
+ {%- endif -%}
21
+ {%- if fileinfoData.img -%}
22
+ <img class="file-info-img w-100 h-100 " src="{{fileinfoData.img}}" alt="">
23
+ {%- endif -%}
24
+ </div>
25
+ {%- if fileinfoData.display_formats -%}
26
+ <div >
27
+ {%- include fileformat/fileinfoformat.html -%}
16
28
  </div>
17
29
  {%- endif -%}
18
-
19
30
  {% include footer/index.html %}
20
31
  {% include script.html %}
32
+ </div>
33
+ </div>
34
+
35
+ </div>
21
36
  </body>
22
37
 
23
38
  </html>
data/assets/css/tools.css CHANGED
@@ -1707,3 +1707,40 @@ ul li {
1707
1707
  .website-wrap {
1708
1708
  text-align: left;
1709
1709
  }
1710
+ .file-info-h1 {
1711
+ font-family: Helvetica, sans-serif;
1712
+ font-weight: 600;
1713
+ font-size: 1.8rem;
1714
+ margin: 0;
1715
+ margin-bottom: 8px;
1716
+ }
1717
+ .file-info-h2 {
1718
+ font-family: Helvetica, sans-serif;
1719
+ font-weight: 600;
1720
+ font-size: 19px;
1721
+ color: #848d95;
1722
+ margin-bottom: 10px;
1723
+ }
1724
+ .file-info-item-list {
1725
+ list-style: disc;
1726
+ color: rgb(26, 25, 25);
1727
+ font-family: Helvetica;
1728
+ font-size: 17.4px;
1729
+ line-height: 32px;
1730
+ padding: 0;
1731
+ }
1732
+ .file-info-img {
1733
+ height: 500px;
1734
+ width: 100%;
1735
+ }
1736
+ .info-title {
1737
+ font-weight: 600;
1738
+ }
1739
+ .sticky-div-file-info {
1740
+ position: sticky;
1741
+ top: 0%;
1742
+ }
1743
+
1744
+ ol li::marker {
1745
+ font-size: 25px;
1746
+ }
Binary file
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.0.8
4
+ version: 1.0.9
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-06-25 00:00:00.000000000 Z
11
+ date: 2021-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -101,6 +101,7 @@ files:
101
101
  - _includes/dropdown/langdropdown.html
102
102
  - _includes/fileformat/comparisonfiles.html
103
103
  - _includes/fileformat/fileformatdetail.html
104
+ - _includes/fileformat/fileinfoformat.html
104
105
  - _includes/footer/index.html
105
106
  - _includes/google-analytics.html
106
107
  - _includes/head/index.html
@@ -147,6 +148,7 @@ files:
147
148
  - assets/images/Nikita.webp
148
149
  - assets/images/alka.webp
149
150
  - assets/images/avatar.png
151
+ - assets/images/fileformat.webp
150
152
  - assets/images/keshav.webp
151
153
  - assets/images/logo.png
152
154
  - assets/images/paavan.webp