appscms-tools-theme 0.5.0 → 0.5.1

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: 18b5de6756c48853594d6c2f33f337e039707da2aad7448f425e7aed58833700
4
- data.tar.gz: de328a55136601fdd166c24a9da546b4eab5dd389b1bbcb10dd3358924b85eb4
3
+ metadata.gz: e13ca8802827785626af39c47076ba24d8b1fea76dc04b45c652d8ae651f2b62
4
+ data.tar.gz: e144fe7ab02a42806591329763bcbdd5c1bc137a4cb92d4f85f90fc948818cea
5
5
  SHA512:
6
- metadata.gz: 9584923dad619dcb5da82bcbc7d99d1e5b1436a3872f637b28b2bdb9deae0afa4889f24e816659ef4e0390b6513db831b1c8e6fb88ba9aa7558dd9eac73db825
7
- data.tar.gz: 865a383ff81b624012f1cc62c0727f525aa86e5396856572752bc788e80cfc481d73114a59ae771e82c827fbc78fb2f5bf6287ca404c62fca606c5617e56c278
6
+ metadata.gz: 0e3ba26dd7dd21a1e57f26e42c9e2eb9bd412ee3ca0365345523b38a1b2f0cd31b2411b5d21a582202a3cf5b2cb2e509a445983e2d7c7904cc9dc900d554bd9b
7
+ data.tar.gz: 1a8ffa82b5cbbffc40aa43e0487eb0211e986831587ecdfa8caeaf680dbbb17fb4337985386ccc1518b4bf16ba4eca839a9b6d165c0c61326715e1d1f42f1895
@@ -4,25 +4,21 @@
4
4
  "company":[
5
5
  {
6
6
  "name":"About",
7
- "url":"/about"
8
-
7
+ "url":"/about"
9
8
  },
10
9
  {
11
10
  "name":"Help",
12
11
  "url":"/help"
13
-
14
12
  },
15
13
  {
16
14
  "name":"Blog",
17
15
  "url":"/blog"
18
-
19
16
  }
20
17
  ],
21
18
  "product":[
22
19
  {
23
20
  "name":"Pricing",
24
21
  "url":"/pricing"
25
-
26
22
  },
27
23
  {
28
24
  "name":"Team",
@@ -31,7 +27,6 @@
31
27
  {
32
28
  "name":"Developers",
33
29
  "url":"/developers"
34
-
35
30
  }
36
31
  ],
37
32
  "networkSites":[
@@ -81,5 +76,16 @@
81
76
 
82
77
  }
83
78
  ],
84
- "messege": "© 2021 pdf AG — Made with love for the people of the internet."
79
+ "messege": "© 2021 pdf AG — Made with love for the people of the internet.",
80
+ "legal":[
81
+ {
82
+ "name":"Terms and conditions",
83
+ "url":"/terms-and-conditions"
84
+ },
85
+ {
86
+ "name":"Privacy Policy",
87
+ "url":"/privacy-policy"
88
+ }
89
+ ]
90
+
85
91
  }
@@ -1,4 +1,5 @@
1
1
  <head>
2
+ {% assign favicon = site.favicon %}
2
3
  {%- assign seo_description = page.description | default: page.excerpt | default: site.description -%}
3
4
  {%- if seo_description -%}
4
5
  {%- assign seo_description = seo_description | markdownify | strip_html | strip_newlines | escape_once -%}
@@ -9,6 +10,7 @@
9
10
  {%- assign og_type = "website" -%}
10
11
  {%- endif -%}
11
12
  <meta charset="UTF-8">
13
+ <link rel="shortcut icon" href="{{favicon}}">
12
14
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
13
15
  <meta name="keywords" content="{{site.keyboard}}">
14
16
  <meta name="description" content="{{ seo_description}}">
@@ -46,9 +46,9 @@
46
46
  <div class="footer-msg">{{dataToShow.messege}}
47
47
  </div>
48
48
  <div class="privacy-links">
49
- <div class="privacy-links-item"><a href="/legal">Privacy &amp;
50
- Terms</a></div>
51
- <div class="privacy-links-item"><a href="/contact">Contact Us</a></div>
49
+ {% for data in dataToShow.legal %}
50
+ <div class="privacy-links-item"><a href="{{data.url}}">{{data.name}}</a></div>
51
+ {% endfor %}
52
52
  </div>
53
53
  </div>
54
54
  </footer>
@@ -8,7 +8,7 @@
8
8
 
9
9
  {% else %}
10
10
  <a href="/">
11
- <img src="{{navbar.navbarBrandLogo}}" alt="{{navbar.navbarBrandLogo}}" class="navbar-brand-image">
11
+ <img class="logo-height" src="{{navbar.navbarBrandLogo}}" alt="{{navbar.navbarBrandLogo}}" class="navbar-brand-image">
12
12
 
13
13
  </a>
14
14
  {% endif %}
data/_layouts/post.html CHANGED
@@ -58,6 +58,7 @@
58
58
  {%- include section/count.html -%}
59
59
  {%- include section/alertbar.html -%}
60
60
  {% include script.html %}
61
+ <script src="{{ '/assets/js/TopScroll.js' | relative_url }}"></script>
61
62
  </body>
62
63
 
63
64
  </html>
@@ -9,7 +9,6 @@
9
9
  {% include header/index.html %}
10
10
  {%- include dropdown/langdropdown.html -%}
11
11
  <div class="container py-4">
12
- <!-- <p>{{site.pages}}</p> -->
13
12
  <h1 class="about-h1 py-4">{{privacyData.h1}}</h1>
14
13
  <h2 class="about-h2">{{privacyData.h2}}</h2>
15
14
  <div class="py-3">
@@ -9,7 +9,6 @@
9
9
  {% include header/index.html %}
10
10
  {%- include dropdown/langdropdown.html -%}
11
11
  <div class="container py-4">
12
- <!-- <p>{{site.pages}}</p> -->
13
12
  <h1 class="about-h1 py-4">{{termsData.h1}}</h1>
14
13
  <div class="py-3">
15
14
  {%- for item in termsData.termsAndConditions -%}
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: 0.5.0
4
+ version: 0.5.1
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-03-11 00:00:00.000000000 Z
11
+ date: 2021-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll