appscms-tools-theme 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/footer/en/data.json +13 -7
- data/_includes/custom-head.html +2 -0
- data/_includes/footer/index.html +3 -3
- data/_includes/header/blogHeader.html +1 -1
- data/_layouts/post.html +1 -0
- data/_layouts/privacyPolicy.html +0 -1
- data/_layouts/termAndCondition.html +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e13ca8802827785626af39c47076ba24d8b1fea76dc04b45c652d8ae651f2b62
|
4
|
+
data.tar.gz: e144fe7ab02a42806591329763bcbdd5c1bc137a4cb92d4f85f90fc948818cea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e3ba26dd7dd21a1e57f26e42c9e2eb9bd412ee3ca0365345523b38a1b2f0cd31b2411b5d21a582202a3cf5b2cb2e509a445983e2d7c7904cc9dc900d554bd9b
|
7
|
+
data.tar.gz: 1a8ffa82b5cbbffc40aa43e0487eb0211e986831587ecdfa8caeaf680dbbb17fb4337985386ccc1518b4bf16ba4eca839a9b6d165c0c61326715e1d1f42f1895
|
data/_data/footer/en/data.json
CHANGED
@@ -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
|
}
|
data/_includes/custom-head.html
CHANGED
@@ -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}}">
|
data/_includes/footer/index.html
CHANGED
@@ -46,9 +46,9 @@
|
|
46
46
|
<div class="footer-msg">{{dataToShow.messege}}
|
47
47
|
</div>
|
48
48
|
<div class="privacy-links">
|
49
|
-
|
50
|
-
|
51
|
-
|
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
data/_layouts/privacyPolicy.html
CHANGED
@@ -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.
|
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
|
+
date: 2021-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|