appscms-tools-theme 1.7.2 → 1.7.3

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: 8f8de475d04a1c5d805c6b5719e1872fe16fbfe8983cf40952ff721536a7dba0
4
- data.tar.gz: 9d0fa8a8ae3f9ecb46abd5b8856e826553f1e0c7f1761b47497dd09cdbc80f25
3
+ metadata.gz: 5b7aad8ccb0d4fa1c2f54a096bedb32b31dda339222f7104f3a4f9ac2ef7be27
4
+ data.tar.gz: c9b720fa96c503b75dd738970cb13ed2bc8c2320be0e5207b86c49de235c7769
5
5
  SHA512:
6
- metadata.gz: ed177e636398d82a2f9430704f000fd95760c684266de83c8885319cce6880599dde21d07d7624272ab22693740b3dd0771f581b27a601a85513a656c2eded72
7
- data.tar.gz: 6a4d173ee86985cb2ad2d596da14fa165558f053f81d7e5eddfa3e9d0e180d434f1ba0422056e01954f069da0de29e892b7620e17494eedcfe96f618feb594a2
6
+ metadata.gz: 284a07e29417079b63fd3a4a62c250a007ca8b7e401746792274a6a32895fe083bab8462f0ff2848e670a77f28741b55aa9997763024fa77ebaaf9d883bdbead
7
+ data.tar.gz: 46d36421e3aea261a9bb75dfb73f269da6c80f68af8b018748850794c0e576dd3fa86f2c54905d67e2be6ad056bc2b8f9a02ee33d3ab448f90f12affc2855596
@@ -0,0 +1,56 @@
1
+ {% assign lang = page.lang %}
2
+ {% assign dataToShow = site.data.footer[lang].data %}
3
+ {%- assign networksitesData = site.data.footer.networksites -%}
4
+ {%- include languages/languages.html -%}
5
+ {% assign dataFile= site.data[folder][lang][file] %}
6
+ <footer class="footer">
7
+ <div class="container">
8
+ <div class="footer-wrapper">
9
+ {%- if dataToShow.logo -%}
10
+ <div class="footer-logo-cont"><img loading="lazy" src="{{dataToShow.logo}}" title="logo" class="footer-logo"
11
+ {%- if site.crossorigin -%} crossorigin {%- endif -%}>
12
+ <div class="footer-title">{{dataToShow.heading}}</div>
13
+ </div>
14
+ {%- endif -%}
15
+ <nav class="footer-nav">
16
+ <ul class="footer-ul">
17
+ <h2 class="footer-ul-title">{{dataToShow.companytitle | default: 'Company' }}</h2>
18
+ {% for data in dataToShow.company %}
19
+ <a class="footer-link" href="{{data.url}}">{{data.name}}</a>
20
+ {% endfor %}
21
+ </ul>
22
+ <ul class="footer-ul">
23
+ <h2 class="footer-ul-title">{{dataToShow.producttitle | default: 'Product' }}</h2>
24
+ {% for data in dataToShow.product %}
25
+ <a class="footer-link" href="{{data.url}}">{{data.name}}</a>
26
+ {% endfor %}
27
+ </ul>
28
+ <ul class="footer-ul">
29
+ <h2 class="footer-ul-title">{{dataToShow.networksitestitle | default: 'Network sites'}}</h2>
30
+ {% for data in networksitesData.networkSites %}
31
+ <a class="footer-link" href="{{data.url}}">{{data.name}}</a>
32
+ {% endfor %}
33
+ </ul>
34
+ </nav>
35
+ </div>
36
+ <div class="jKLUgT"></div>
37
+ <div class="d-flex py-4">
38
+ {% for data in dataToShow.social %}
39
+ <a class="cVpsCJ px-3" target="_blank" rel="noopener noreferrer" href="{{data.url}}" title="LinkedIn">
40
+ <div class="sDfHB" style="width:24px;height:24px">
41
+ <img loading="lazy" src="{{data.logo}}" title="{{data.title}}" {%- if site.crossorigin -%}
42
+ crossorigin {%- endif -%}>
43
+ </div>
44
+ </a>
45
+ {% endfor %}
46
+ </div>
47
+ <div class="privacy-footer">
48
+ <div class="footer-msg">{{dataToShow.messege}}
49
+ </div>
50
+ <div class="privacy-links">
51
+ {% for data in dataToShow.legal %}
52
+ <div class="privacy-links-item"><a href="{{data.url}}">{{data.name}}</a></div>
53
+ {% endfor %}
54
+ </div>
55
+ </div>
56
+ </footer>
@@ -18,7 +18,7 @@
18
18
  {{content}}
19
19
  </div>
20
20
  </div>
21
- {% include footer/staticfooter.html %}
21
+ {% include staticfooter.html %}
22
22
  {% include script.html %}
23
23
  </body>
24
24
 
@@ -72,7 +72,7 @@
72
72
  <div>
73
73
  </div>
74
74
  </div>
75
- {% include footer/staticfooter.html %}
75
+ {% include staticfooter.html %}
76
76
  {% include script.html %}
77
77
  </body>
78
78
 
@@ -72,7 +72,7 @@
72
72
  {{content}}
73
73
  </div>
74
74
  </div>
75
- {% include footer/staticfooter.html %}
75
+ {% include staticfooter.html %}
76
76
  {% include script.html %}
77
77
  </body>
78
78
 
data/_layouts/help.html CHANGED
@@ -17,7 +17,7 @@
17
17
  {{content}}
18
18
  </div>
19
19
  </div>
20
- {% include footer/staticfooter.html %}
20
+ {% include staticfooter.html %}
21
21
  {% include script.html %}
22
22
  </body>
23
23
 
@@ -396,7 +396,7 @@
396
396
  {{content}}
397
397
  </div>
398
398
  </div>
399
- {% include footer/staticfooter.html %}
399
+ {% include staticfooter.html %}
400
400
  {% include script.html %}
401
401
  </body>
402
402
 
@@ -400,7 +400,7 @@
400
400
  {{content}}
401
401
  </div>
402
402
  </div>
403
- {% include footer/staticfooter.html %}
403
+ {% include staticfooter.html %}
404
404
  {% include script.html %}
405
405
  </body>
406
406
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appscms-tools-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.2
4
+ version: 1.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms
@@ -163,6 +163,7 @@ files:
163
163
  - _includes/section/recent_posts.html
164
164
  - _includes/section/related_categories_post.html
165
165
  - _includes/share/socialshare.html
166
+ - _includes/staticfooter.html
166
167
  - _layouts/aboutUs.html
167
168
  - _layouts/blog.html
168
169
  - _layouts/categories.html