appscms-tools-theme 1.3.5 → 1.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -21
- data/README.md +50 -50
- data/_data/about/en/about.json +16 -16
- data/_data/blog/alertbar.yml +3 -3
- data/_data/blog/authors.yml +11 -11
- data/_data/blog/blog.yml +3 -3
- data/_data/blog/nav.json +13 -13
- data/_data/blog/share.yml +28 -28
- data/_data/contact/en/contact.json +38 -38
- data/_data/disclaimer/en/disclaimer.json +37 -37
- data/_data/download/en/download.json +35 -35
- data/_data/feature/en/compress-pdf.json +191 -191
- data/_data/feature/en/split-pdf.json +115 -115
- data/_data/feature/hi/compress-pdf.json +81 -81
- data/_data/fileinfo/en/fileinfo.json +14 -14
- data/_data/files/.gitignore +4 -4
- data/_data/files/en/3gp.json +144 -144
- data/_data/files/en/acc.json +25 -25
- data/_data/files/en/aff.json +65 -65
- data/_data/files/en/cr2.json +169 -169
- data/_data/files/en/dvd.json +25 -25
- data/_data/files/en/mov.json +146 -146
- data/_data/files/en/ogg.json +163 -163
- data/_data/files/en/vmv.json +47 -47
- data/_data/footer/en/data.json +72 -72
- data/_data/footer/hi/data.json +68 -68
- data/_data/footer/networksites.json +15 -15
- data/_data/header/en/data.json +135 -144
- data/_data/header/hi/data.json +144 -144
- data/_data/home/en/en.json +274 -270
- data/_data/home/hi/hi.json +86 -86
- data/_data/languagesupport/compress-pdf-langs.json +11 -11
- data/_data/languagesupport/index-langs.json +13 -13
- data/_data/privacy/en/privacyPolicy.json +265 -265
- data/_data/termAndCondition/en/termAndCondition.json +358 -358
- data/_includes/Rating/rating.html +91 -91
- data/_includes/Rating/structureddata.html +53 -53
- data/_includes/Usp/usp.html +84 -84
- data/_includes/adsense/adsense.html +7 -7
- data/_includes/author_bio.html +15 -15
- data/_includes/authors/authors.html +27 -27
- data/_includes/cssfile/links.html +13 -13
- data/_includes/custom-head.html +41 -41
- data/_includes/disqus_comments.html +10 -10
- data/_includes/dropdown/langdropdown.html +22 -22
- data/_includes/feature.html +35 -35
- data/_includes/fileformat/comparisonfiles.html +145 -145
- data/_includes/fileformat/fileformatdetail.html +99 -99
- data/_includes/fileformat/fileinfoformat.html +94 -91
- data/_includes/footer/index.html +179 -100
- data/_includes/google-analytics.html +22 -22
- data/_includes/head/index.html +159 -159
- data/_includes/header/blogHeader.html +28 -28
- data/_includes/header/index.html +92 -92
- data/_includes/nofiletransfer/nofiletransfer.html +38 -38
- data/_includes/paginationBlogPage.html +34 -34
- data/_includes/paginationPostPage.html +14 -14
- data/_includes/postauthorbio.html +17 -17
- data/_includes/postbox.html +29 -29
- data/_includes/script.html +15 -15
- data/_includes/section/alertbar.html +11 -11
- data/_includes/section/count.html +23 -23
- data/_includes/section/recent_posts.html +42 -42
- data/_includes/section/related_categories_post.html +158 -158
- data/_includes/share/socialshare.html +50 -50
- data/_layouts/aboutUs.html +22 -22
- data/_layouts/blog.html +66 -66
- data/_layouts/categories.html +25 -25
- data/_layouts/contactUs.html +22 -22
- data/_layouts/default.html +1 -1
- data/_layouts/disclaimer.html +35 -35
- data/_layouts/download.html +243 -243
- data/_layouts/feature.html +151 -151
- data/_layouts/fileInfo.html +37 -37
- data/_layouts/help.html +22 -22
- data/_layouts/home.html +161 -152
- data/_layouts/page.html +5 -5
- data/_layouts/post.html +134 -135
- data/_layouts/privacyPolicy.html +400 -400
- data/_layouts/termAndCondition.html +401 -401
- data/assets/cross.svg +4 -4
- data/assets/css/blog.css +491 -491
- data/assets/css/tools.css +1799 -1805
- data/assets/facebook.svg +4 -4
- data/assets/instagram.svg +4 -4
- data/assets/js/TopScroll.js +8 -8
- data/assets/js/googledrive.js +153 -153
- data/assets/js/manifest.json +16 -16
- data/assets/js/multiselect.js +155 -155
- data/assets/linkdin.svg +4 -4
- data/assets/pdf.svg +20 -20
- data/assets/secure.svg +43 -43
- data/assets/star.svg +4 -4
- data/assets/twitter.svg +4 -4
- data/assets/youtube.svg +4 -4
- metadata +7 -7
data/_includes/head/index.html
CHANGED
@@ -1,159 +1,159 @@
|
|
1
|
-
<head>
|
2
|
-
{% assign file = page.fileName %} {% assign lang = page.lang %} {% assign
|
3
|
-
dataArr = site.data.[page.folderName][lang][file] %} {% assign dataToShow =
|
4
|
-
dataArr %} {% assign title = dataToShow.TITLE | replace:"$variable",
|
5
|
-
page.value | default:page.title | default: site.title %} {% assign description
|
6
|
-
= dataToShow.META | replace:"$variable", page.value | default:
|
7
|
-
site.description %} {% assign keywords = dataToShow.keywords %} {% assign
|
8
|
-
favicon = site.favicon %} {%- assign langsupport = page.langsupport -%} {%-
|
9
|
-
assign variable = site.data.languagesupport[langsupport]-%} {{site.weburl}}
|
10
|
-
<meta charset="utf-8" />
|
11
|
-
<link rel="shortcut icon" href="{{favicon}}" />
|
12
|
-
<meta name="viewport" content="width=device-width" />
|
13
|
-
<title>{{title}}</title>
|
14
|
-
{%- if dataToShow.keywords -%}
|
15
|
-
<meta name="keywords" content="{{keywords}}" />
|
16
|
-
{%- endif -%}
|
17
|
-
<meta name="description" content="{{description}}" />
|
18
|
-
<link
|
19
|
-
rel="stylesheet"
|
20
|
-
href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
|
21
|
-
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l"
|
22
|
-
crossorigin="anonymous"
|
23
|
-
/>
|
24
|
-
<link rel="canonical" href="{{site.url | append: page.url}}" />
|
25
|
-
<link
|
26
|
-
href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap"
|
27
|
-
rel="stylesheet"
|
28
|
-
/>
|
29
|
-
<link
|
30
|
-
rel="stylesheet"
|
31
|
-
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
|
32
|
-
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
|
33
|
-
crossorigin="anonymous"
|
34
|
-
referrerpolicy="no-referrer"
|
35
|
-
/>
|
36
|
-
<link rel="stylesheet" href="/assets/css/tools.css" />
|
37
|
-
<meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}" />
|
38
|
-
<meta property="og:title" content="{{title}}" />
|
39
|
-
<meta property="og:description" content="{{description}}" />
|
40
|
-
<meta property="og:type" content="website" />
|
41
|
-
<meta
|
42
|
-
data-rh="true"
|
43
|
-
property="og:url"
|
44
|
-
content="{{site.url | append: page.url}}"
|
45
|
-
/>
|
46
|
-
<meta data-rh="true" property="og:site_name" content="{{site.name}}" />
|
47
|
-
<meta data-rh="true" property="twitter:domain" content="{{site.url}}" />
|
48
|
-
<meta
|
49
|
-
data-rh="true"
|
50
|
-
property="twitter:url"
|
51
|
-
content="{{site.url | append: page.url}}"
|
52
|
-
/>
|
53
|
-
<meta data-rh="true" name="twitter:title" content="{{title}}" />
|
54
|
-
<meta data-rh="true" name="twitter:description" content="{{description}}" />
|
55
|
-
<meta
|
56
|
-
data-rh="true"
|
57
|
-
name="twitter:image:src"
|
58
|
-
content="{{site.url}}{{favicon}}"
|
59
|
-
/>
|
60
|
-
{% include adsense/adsense.html %} {%- if page.noindex -%}
|
61
|
-
<meta name="robots" content="noindex" />
|
62
|
-
{%- endif -%} {%- if site.pwa -%}
|
63
|
-
<link rel="manifest" href="/assets/js/manifest.json" />
|
64
|
-
{%- endif -%} {%- for item in variable.langsupport -%}
|
65
|
-
<link
|
66
|
-
data-rh="true"
|
67
|
-
rel="alternate"
|
68
|
-
href="{{site.url | append: item.permalink}}"
|
69
|
-
hreflang="{{item.hreflang}}"
|
70
|
-
/>
|
71
|
-
{%- endfor -%} {% include cssfile/links.html %}
|
72
|
-
<script type="application/ld+json">
|
73
|
-
{
|
74
|
-
"@context": "http://schema.org",
|
75
|
-
"@type": "Organization",
|
76
|
-
"url": "{{site.siteurl}}",
|
77
|
-
"logo": "{{site.siteurl}}{{site.logo}}"
|
78
|
-
}
|
79
|
-
</script>
|
80
|
-
<script type="application/ld+json">
|
81
|
-
{
|
82
|
-
"@context": "http://schema.org",
|
83
|
-
"@type": "WebSite",
|
84
|
-
"name": "{{site.name}}",
|
85
|
-
"alternateName": "{{site.alternateName}}",
|
86
|
-
"url": "{{site.siteurl}}"
|
87
|
-
}
|
88
|
-
</script>
|
89
|
-
{%- if dataToShow.HOW_TO_CONTENT -%} {%- if dataToShow.HOW_TO_CONTENT.heading
|
90
|
-
!= '' -%}
|
91
|
-
<script type="application/ld+json">
|
92
|
-
{
|
93
|
-
"@context": "http://schema.org",
|
94
|
-
"@type": "HowTo",
|
95
|
-
"name": "{{dataToShow.HOW_TO_CONTENT.heading | replace:'"', "'" }}",
|
96
|
-
"image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
|
97
|
-
"step": [
|
98
|
-
{%- for item in dataToShow.HOW_TO_CONTENT.steps-%}
|
99
|
-
{%- if forloop.last == true -%}
|
100
|
-
{ "@type": "HowToStep",
|
101
|
-
"text": "{{item | replace:'"', "'" }}",
|
102
|
-
"image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
|
103
|
-
"url": "{{site.url | append: page.url}}#step{{ forloop.index }}"
|
104
|
-
}
|
105
|
-
{%- else -%}
|
106
|
-
{ "@type": "HowToStep",
|
107
|
-
"text": "{{item | replace:'"', "'" }}",
|
108
|
-
"image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
|
109
|
-
"url": "{{site.url | append: page.url}}#step{{ forloop.index}}"
|
110
|
-
},
|
111
|
-
{%- endif -%}
|
112
|
-
{%- endfor -%}
|
113
|
-
]
|
114
|
-
}
|
115
|
-
</script>
|
116
|
-
{%- endif -%} {%- endif -%} {%- if dataToShow.FAQ -%} {%- if
|
117
|
-
dataToShow.FAQ.first.question !='' -%}
|
118
|
-
<script type="application/ld+json">
|
119
|
-
{
|
120
|
-
"@context": "http://schema.org",
|
121
|
-
"@type": "FAQPage",
|
122
|
-
"mainEntity": [
|
123
|
-
{%- for item in dataToShow.FAQ-%}
|
124
|
-
{%- if forloop.last == true -%}
|
125
|
-
{"@type": "Question",
|
126
|
-
"name": "{{item.question | replace:'"', "'" }}",
|
127
|
-
"acceptedAnswer": {
|
128
|
-
"@type": "Answer",
|
129
|
-
"text": "{{item.answer | replace:'"', "'" }}"
|
130
|
-
}
|
131
|
-
}
|
132
|
-
{%- else -%}
|
133
|
-
{"@type": "Question",
|
134
|
-
"name": "{{item.question | replace:'"', "'" }}",
|
135
|
-
"acceptedAnswer": {
|
136
|
-
"@type": "Answer",
|
137
|
-
"text": "{{item.answer | replace:'"', "'" }}"
|
138
|
-
}
|
139
|
-
},
|
140
|
-
{%- endif -%}
|
141
|
-
{%- endfor -%}
|
142
|
-
]
|
143
|
-
}
|
144
|
-
</script>
|
145
|
-
{%- endif -%} {%- endif -%} {%- if page.tool -%} {%- include
|
146
|
-
Rating/structureddata.html -%} {%- endif -%} {%- include google-analytics.html
|
147
|
-
-%} {%- if site.pwa -%}
|
148
|
-
<script>
|
149
|
-
if ('serviceWorker' in navigator) {
|
150
|
-
window.addEventListener('load', () => {
|
151
|
-
navigator.serviceWorker
|
152
|
-
.register('/serviceworker.js')
|
153
|
-
.then((reg) => console.log('Success: ', reg.scope))
|
154
|
-
.catch((err) => console.log('Failure: ', err))
|
155
|
-
})
|
156
|
-
}
|
157
|
-
</script>
|
158
|
-
{%- endif -%}
|
159
|
-
</head>
|
1
|
+
<head>
|
2
|
+
{% assign file = page.fileName %} {% assign lang = page.lang %} {% assign
|
3
|
+
dataArr = site.data.[page.folderName][lang][file] %} {% assign dataToShow =
|
4
|
+
dataArr %} {% assign title = dataToShow.TITLE | replace:"$variable",
|
5
|
+
page.value | default:page.title | default: site.title %} {% assign description
|
6
|
+
= dataToShow.META | replace:"$variable", page.value | default:
|
7
|
+
site.description %} {% assign keywords = dataToShow.keywords %} {% assign
|
8
|
+
favicon = site.favicon %} {%- assign langsupport = page.langsupport -%} {%-
|
9
|
+
assign variable = site.data.languagesupport[langsupport]-%} {{site.weburl}}
|
10
|
+
<meta charset="utf-8" />
|
11
|
+
<link rel="shortcut icon" href="{{favicon}}" />
|
12
|
+
<meta name="viewport" content="width=device-width" />
|
13
|
+
<title>{{title}}</title>
|
14
|
+
{%- if dataToShow.keywords -%}
|
15
|
+
<meta name="keywords" content="{{keywords}}" />
|
16
|
+
{%- endif -%}
|
17
|
+
<meta name="description" content="{{description}}" />
|
18
|
+
<link
|
19
|
+
rel="stylesheet"
|
20
|
+
href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
|
21
|
+
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l"
|
22
|
+
crossorigin="anonymous"
|
23
|
+
/>
|
24
|
+
<link rel="canonical" href="{{site.url | append: page.url}}" />
|
25
|
+
<link
|
26
|
+
href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap"
|
27
|
+
rel="stylesheet"
|
28
|
+
/>
|
29
|
+
<link
|
30
|
+
rel="stylesheet"
|
31
|
+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
|
32
|
+
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
|
33
|
+
crossorigin="anonymous"
|
34
|
+
referrerpolicy="no-referrer"
|
35
|
+
/>
|
36
|
+
<link rel="stylesheet" href="/assets/css/tools.css" />
|
37
|
+
<meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}" />
|
38
|
+
<meta property="og:title" content="{{title}}" />
|
39
|
+
<meta property="og:description" content="{{description}}" />
|
40
|
+
<meta property="og:type" content="website" />
|
41
|
+
<meta
|
42
|
+
data-rh="true"
|
43
|
+
property="og:url"
|
44
|
+
content="{{site.url | append: page.url}}"
|
45
|
+
/>
|
46
|
+
<meta data-rh="true" property="og:site_name" content="{{site.name}}" />
|
47
|
+
<meta data-rh="true" property="twitter:domain" content="{{site.url}}" />
|
48
|
+
<meta
|
49
|
+
data-rh="true"
|
50
|
+
property="twitter:url"
|
51
|
+
content="{{site.url | append: page.url}}"
|
52
|
+
/>
|
53
|
+
<meta data-rh="true" name="twitter:title" content="{{title}}" />
|
54
|
+
<meta data-rh="true" name="twitter:description" content="{{description}}" />
|
55
|
+
<meta
|
56
|
+
data-rh="true"
|
57
|
+
name="twitter:image:src"
|
58
|
+
content="{{site.url}}{{favicon}}"
|
59
|
+
/>
|
60
|
+
{% include adsense/adsense.html %} {%- if page.noindex -%}
|
61
|
+
<meta name="robots" content="noindex" />
|
62
|
+
{%- endif -%} {%- if site.pwa -%}
|
63
|
+
<link rel="manifest" href="/assets/js/manifest.json" />
|
64
|
+
{%- endif -%} {%- for item in variable.langsupport -%}
|
65
|
+
<link
|
66
|
+
data-rh="true"
|
67
|
+
rel="alternate"
|
68
|
+
href="{{site.url | append: item.permalink}}"
|
69
|
+
hreflang="{{item.hreflang}}"
|
70
|
+
/>
|
71
|
+
{%- endfor -%} {% include cssfile/links.html %}
|
72
|
+
<script type="application/ld+json">
|
73
|
+
{
|
74
|
+
"@context": "http://schema.org",
|
75
|
+
"@type": "Organization",
|
76
|
+
"url": "{{site.siteurl}}",
|
77
|
+
"logo": "{{site.siteurl}}{{site.logo}}"
|
78
|
+
}
|
79
|
+
</script>
|
80
|
+
<script type="application/ld+json">
|
81
|
+
{
|
82
|
+
"@context": "http://schema.org",
|
83
|
+
"@type": "WebSite",
|
84
|
+
"name": "{{site.name}}",
|
85
|
+
"alternateName": "{{site.alternateName}}",
|
86
|
+
"url": "{{site.siteurl}}"
|
87
|
+
}
|
88
|
+
</script>
|
89
|
+
{%- if dataToShow.HOW_TO_CONTENT -%} {%- if dataToShow.HOW_TO_CONTENT.heading
|
90
|
+
!= '' -%}
|
91
|
+
<script type="application/ld+json">
|
92
|
+
{
|
93
|
+
"@context": "http://schema.org",
|
94
|
+
"@type": "HowTo",
|
95
|
+
"name": "{{dataToShow.HOW_TO_CONTENT.heading | replace:'"', "'" }}",
|
96
|
+
"image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
|
97
|
+
"step": [
|
98
|
+
{%- for item in dataToShow.HOW_TO_CONTENT.steps-%}
|
99
|
+
{%- if forloop.last == true -%}
|
100
|
+
{ "@type": "HowToStep",
|
101
|
+
"text": "{{item | replace:'"', "'" }}",
|
102
|
+
"image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
|
103
|
+
"url": "{{site.url | append: page.url}}#step{{ forloop.index }}"
|
104
|
+
}
|
105
|
+
{%- else -%}
|
106
|
+
{ "@type": "HowToStep",
|
107
|
+
"text": "{{item | replace:'"', "'" }}",
|
108
|
+
"image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
|
109
|
+
"url": "{{site.url | append: page.url}}#step{{ forloop.index}}"
|
110
|
+
},
|
111
|
+
{%- endif -%}
|
112
|
+
{%- endfor -%}
|
113
|
+
]
|
114
|
+
}
|
115
|
+
</script>
|
116
|
+
{%- endif -%} {%- endif -%} {%- if dataToShow.FAQ -%} {%- if
|
117
|
+
dataToShow.FAQ.first.question !='' -%}
|
118
|
+
<script type="application/ld+json">
|
119
|
+
{
|
120
|
+
"@context": "http://schema.org",
|
121
|
+
"@type": "FAQPage",
|
122
|
+
"mainEntity": [
|
123
|
+
{%- for item in dataToShow.FAQ-%}
|
124
|
+
{%- if forloop.last == true -%}
|
125
|
+
{"@type": "Question",
|
126
|
+
"name": "{{item.question | replace:'"', "'" }}",
|
127
|
+
"acceptedAnswer": {
|
128
|
+
"@type": "Answer",
|
129
|
+
"text": "{{item.answer | replace:'"', "'" }}"
|
130
|
+
}
|
131
|
+
}
|
132
|
+
{%- else -%}
|
133
|
+
{"@type": "Question",
|
134
|
+
"name": "{{item.question | replace:'"', "'" }}",
|
135
|
+
"acceptedAnswer": {
|
136
|
+
"@type": "Answer",
|
137
|
+
"text": "{{item.answer | replace:'"', "'" }}"
|
138
|
+
}
|
139
|
+
},
|
140
|
+
{%- endif -%}
|
141
|
+
{%- endfor -%}
|
142
|
+
]
|
143
|
+
}
|
144
|
+
</script>
|
145
|
+
{%- endif -%} {%- endif -%} {%- if page.tool -%} {%- include
|
146
|
+
Rating/structureddata.html -%} {%- endif -%} {%- include google-analytics.html
|
147
|
+
-%} {%- if site.pwa -%}
|
148
|
+
<script>
|
149
|
+
if ('serviceWorker' in navigator) {
|
150
|
+
window.addEventListener('load', () => {
|
151
|
+
navigator.serviceWorker
|
152
|
+
.register('/serviceworker.js')
|
153
|
+
.then((reg) => console.log('Success: ', reg.scope))
|
154
|
+
.catch((err) => console.log('Failure: ', err))
|
155
|
+
})
|
156
|
+
}
|
157
|
+
</script>
|
158
|
+
{%- endif -%}
|
159
|
+
</head>
|
@@ -1,28 +1,28 @@
|
|
1
|
-
<header id="header">
|
2
|
-
<nav class="navbar navbar-expand-lg navbar-dark bg-light py-3">
|
3
|
-
{%- assign navbar = site.data.blog.nav -%}
|
4
|
-
{% if navbar.navbarBrandText != "" %}
|
5
|
-
<a class="navbar-brand" href="/" title="{{navbar.navbarBrandText}}">{{navbar.navbarBrandText}}</a>
|
6
|
-
|
7
|
-
{% else %}
|
8
|
-
<a href="/">
|
9
|
-
<img class="logo-height" loading="lazy" src="{{navbar.navbarBrandLogo}}" alt="{{navbar.navbarBrandLogo}}" style="height: 40px; width: 40px;" class="navbar-brand-image">
|
10
|
-
|
11
|
-
</a>
|
12
|
-
{% endif %}
|
13
|
-
|
14
|
-
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
|
15
|
-
<i class="fas fa-bars fa-2x" style="color:#000"></i>
|
16
|
-
</button>
|
17
|
-
|
18
|
-
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
19
|
-
<ul class="navbar-nav ml-auto">
|
20
|
-
{%- for item in site.data.blog.nav.navItems -%}
|
21
|
-
<li class="nav-item">
|
22
|
-
<a class="nav-link" href="/{{item.url}}">{{item.name}}</a>
|
23
|
-
</li>
|
24
|
-
{% endfor %}
|
25
|
-
</ul>
|
26
|
-
</div>
|
27
|
-
</nav>
|
28
|
-
</header>
|
1
|
+
<header id="header">
|
2
|
+
<nav class="navbar navbar-expand-lg navbar-dark bg-light py-3">
|
3
|
+
{%- assign navbar = site.data.blog.nav -%}
|
4
|
+
{% if navbar.navbarBrandText != "" %}
|
5
|
+
<a class="navbar-brand" href="/" title="{{navbar.navbarBrandText}}">{{navbar.navbarBrandText}}</a>
|
6
|
+
|
7
|
+
{% else %}
|
8
|
+
<a href="/">
|
9
|
+
<img class="logo-height" loading="lazy" src="{{navbar.navbarBrandLogo}}" alt="{{navbar.navbarBrandLogo}}" style="height: 40px; width: 40px;" class="navbar-brand-image">
|
10
|
+
|
11
|
+
</a>
|
12
|
+
{% endif %}
|
13
|
+
|
14
|
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
|
15
|
+
<i class="fas fa-bars fa-2x" style="color:#000"></i>
|
16
|
+
</button>
|
17
|
+
|
18
|
+
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
19
|
+
<ul class="navbar-nav ml-auto">
|
20
|
+
{%- for item in site.data.blog.nav.navItems -%}
|
21
|
+
<li class="nav-item">
|
22
|
+
<a class="nav-link" href="/{{item.url}}">{{item.name}}</a>
|
23
|
+
</li>
|
24
|
+
{% endfor %}
|
25
|
+
</ul>
|
26
|
+
</div>
|
27
|
+
</nav>
|
28
|
+
</header>
|
data/_includes/header/index.html
CHANGED
@@ -1,92 +1,92 @@
|
|
1
|
-
{% assign lang = page.lang %}
|
2
|
-
{% assign dataToShow = site.data.header[lang].data %}
|
3
|
-
{% assign file = page.fileName %}
|
4
|
-
{% assign folder = page.folderName %}
|
5
|
-
{% assign Data= site.data[folder][lang][file] %}
|
6
|
-
<header class="nav-header">
|
7
|
-
|
8
|
-
<nav class="navbar navbar-expand-lg py-3 px-sm-2">
|
9
|
-
<div class="container px-0">
|
10
|
-
{% if dataToShow.navbarBrandText != "" %}
|
11
|
-
<a class="navbar-brand" href="/" title="{{dataToShow.navbarBrandText}}">{{dataToShow.navbarBrandText}}</a>
|
12
|
-
{% else %}
|
13
|
-
<a href="/">
|
14
|
-
<img class="logo-height" src="{{ dataToShow.navbarBrandLogo }}"
|
15
|
-
alt="{{ dataToShow.navbarBrandLogo }}">
|
16
|
-
</a>
|
17
|
-
{% endif %}
|
18
|
-
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
19
|
-
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
20
|
-
<i class="fa fa-bars fa_bars" aria-hidden="true"></i>
|
21
|
-
</button>
|
22
|
-
|
23
|
-
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
24
|
-
|
25
|
-
{%- if Data.megaMenu -%}
|
26
|
-
<li class="nav-item nav__item">
|
27
|
-
<a class="dropdown-toggle ml-lg-5" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
28
|
-
{{Data.megaMenu.nav-link-name}}
|
29
|
-
</a>
|
30
|
-
<ul class="dropmenu dropdown-menu" aria-labelledby="navbarDropdown">
|
31
|
-
<div class="inner-dropdown">
|
32
|
-
{%- for item in Data.megaMenu.dropdown -%}
|
33
|
-
<div class="catPad mb-4">
|
34
|
-
<li class="text-muted">{{item.categoryName}}</li>
|
35
|
-
<div> {%- for item in item.links -%}
|
36
|
-
<li>
|
37
|
-
<a href="{{item.url}}">
|
38
|
-
{%- if item.iconSrc -%}
|
39
|
-
<img class="d-inline mr-2" loading="lazy" style="height:20px;width:20px;" src="{{item.iconSrc}}">
|
40
|
-
{%- endif -%}
|
41
|
-
{{item.name}}
|
42
|
-
</a></li>
|
43
|
-
{%- endfor -%}
|
44
|
-
</div>
|
45
|
-
</div>
|
46
|
-
{%- endfor -%}
|
47
|
-
</div>
|
48
|
-
</ul>
|
49
|
-
</li>
|
50
|
-
{%- else -%}
|
51
|
-
{%- if dataToShow.megaMenu -%}
|
52
|
-
<li class="nav-item nav__item">
|
53
|
-
<a class="dropdown-toggle ml-lg-5" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
54
|
-
{{dataToShow.megaMenu.nav-link-name}}
|
55
|
-
</a>
|
56
|
-
<ul class="dropmenu dropdown-menu" aria-labelledby="navbarDropdown">
|
57
|
-
<div class="inner-dropdown">
|
58
|
-
{%- for item in dataToShow.megaMenu.dropdown -%}
|
59
|
-
<div class="catPad mb-4">
|
60
|
-
<li class="text-muted">{{item.categoryName}}</li>
|
61
|
-
<div> {%- for item in item.links -%}
|
62
|
-
<li>
|
63
|
-
<a href="{{item.url}}">
|
64
|
-
{%- if item.iconSrc -%}
|
65
|
-
<img class="d-inline mr-2" loading="lazy" style="height:20px;width:20px;" src="{{item.iconSrc}}">
|
66
|
-
{%- endif -%}
|
67
|
-
{{item.name}}</a> </li>
|
68
|
-
{%- endfor -%}
|
69
|
-
</div>
|
70
|
-
</div>
|
71
|
-
{%- endfor -%}
|
72
|
-
</div>
|
73
|
-
</ul>
|
74
|
-
</li>
|
75
|
-
{%- endif -%}
|
76
|
-
{%- endif -%}
|
77
|
-
|
78
|
-
|
79
|
-
<ul class="navbar-nav mr-auto ">
|
80
|
-
{% for item in dataToShow.navItems %}
|
81
|
-
<li class="nav-item nav__item">
|
82
|
-
<a href="{{item.url}}">{{item.name}}</a>
|
83
|
-
</li>
|
84
|
-
{% endfor %}
|
85
|
-
</ul>
|
86
|
-
</div>
|
87
|
-
</div>
|
88
|
-
</nav>
|
89
|
-
|
90
|
-
</header>
|
91
|
-
|
92
|
-
|
1
|
+
{% assign lang = page.lang %}
|
2
|
+
{% assign dataToShow = site.data.header[lang].data %}
|
3
|
+
{% assign file = page.fileName %}
|
4
|
+
{% assign folder = page.folderName %}
|
5
|
+
{% assign Data= site.data[folder][lang][file] %}
|
6
|
+
<header class="nav-header">
|
7
|
+
|
8
|
+
<nav class="navbar navbar-expand-lg py-3 px-sm-2">
|
9
|
+
<div class="container px-0">
|
10
|
+
{% if dataToShow.navbarBrandText != "" %}
|
11
|
+
<a class="navbar-brand" href="/" title="{{dataToShow.navbarBrandText}}">{{dataToShow.navbarBrandText}}</a>
|
12
|
+
{% else %}
|
13
|
+
<a href="/">
|
14
|
+
<img class="logo-height" src="{{ dataToShow.navbarBrandLogo }}"
|
15
|
+
alt="{{ dataToShow.navbarBrandLogo }}">
|
16
|
+
</a>
|
17
|
+
{% endif %}
|
18
|
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
19
|
+
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
20
|
+
<i class="fa fa-bars fa_bars" aria-hidden="true"></i>
|
21
|
+
</button>
|
22
|
+
|
23
|
+
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
24
|
+
|
25
|
+
{%- if Data.megaMenu -%}
|
26
|
+
<li class="nav-item nav__item">
|
27
|
+
<a class="dropdown-toggle ml-lg-5" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
28
|
+
{{Data.megaMenu.nav-link-name}}
|
29
|
+
</a>
|
30
|
+
<ul class="dropmenu dropdown-menu" aria-labelledby="navbarDropdown">
|
31
|
+
<div class="inner-dropdown">
|
32
|
+
{%- for item in Data.megaMenu.dropdown -%}
|
33
|
+
<div class="catPad mb-4">
|
34
|
+
<li class="text-muted">{{item.categoryName}}</li>
|
35
|
+
<div> {%- for item in item.links -%}
|
36
|
+
<li>
|
37
|
+
<a href="{{item.url}}">
|
38
|
+
{%- if item.iconSrc -%}
|
39
|
+
<img class="d-inline mr-2" loading="lazy" style="height:20px;width:20px;" src="{{item.iconSrc}}">
|
40
|
+
{%- endif -%}
|
41
|
+
{{item.name}}
|
42
|
+
</a></li>
|
43
|
+
{%- endfor -%}
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
{%- endfor -%}
|
47
|
+
</div>
|
48
|
+
</ul>
|
49
|
+
</li>
|
50
|
+
{%- else -%}
|
51
|
+
{%- if dataToShow.megaMenu -%}
|
52
|
+
<li class="nav-item nav__item">
|
53
|
+
<a class="dropdown-toggle ml-lg-5" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
54
|
+
{{dataToShow.megaMenu.nav-link-name}}
|
55
|
+
</a>
|
56
|
+
<ul class="dropmenu dropdown-menu" aria-labelledby="navbarDropdown">
|
57
|
+
<div class="inner-dropdown">
|
58
|
+
{%- for item in dataToShow.megaMenu.dropdown -%}
|
59
|
+
<div class="catPad mb-4">
|
60
|
+
<li class="text-muted">{{item.categoryName}}</li>
|
61
|
+
<div> {%- for item in item.links -%}
|
62
|
+
<li>
|
63
|
+
<a href="{{item.url}}">
|
64
|
+
{%- if item.iconSrc -%}
|
65
|
+
<img class="d-inline mr-2" loading="lazy" style="height:20px;width:20px;" src="{{item.iconSrc}}">
|
66
|
+
{%- endif -%}
|
67
|
+
{{item.name}}</a> </li>
|
68
|
+
{%- endfor -%}
|
69
|
+
</div>
|
70
|
+
</div>
|
71
|
+
{%- endfor -%}
|
72
|
+
</div>
|
73
|
+
</ul>
|
74
|
+
</li>
|
75
|
+
{%- endif -%}
|
76
|
+
{%- endif -%}
|
77
|
+
|
78
|
+
|
79
|
+
<ul class="navbar-nav mr-auto ">
|
80
|
+
{% for item in dataToShow.navItems %}
|
81
|
+
<li class="nav-item nav__item">
|
82
|
+
<a href="{{item.url}}">{{item.name}}</a>
|
83
|
+
</li>
|
84
|
+
{% endfor %}
|
85
|
+
</ul>
|
86
|
+
</div>
|
87
|
+
</div>
|
88
|
+
</nav>
|
89
|
+
|
90
|
+
</header>
|
91
|
+
|
92
|
+
|
@@ -1,38 +1,38 @@
|
|
1
|
-
<div class="no-file-transfer flex-column mt-5" >
|
2
|
-
<svg
|
3
|
-
id="bold"
|
4
|
-
enable-background="new 0 0 32 32"
|
5
|
-
height="512"
|
6
|
-
viewBox="0 0 32 32"
|
7
|
-
width="512"
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
>
|
10
|
-
<path
|
11
|
-
d="m26 32h-20c-3.314 0-6-2.686-6-6v-20c0-3.314 2.686-6 6-6h20c3.314 0 6 2.686 6 6v20c0 3.314-2.686 6-6 6z"
|
12
|
-
fill="#80008030"
|
13
|
-
/>
|
14
|
-
<path
|
15
|
-
d="m19.667 15.333c-2.389 0-4.334 1.944-4.334 4.333s1.944 4.334 4.334 4.334 4.333-1.944 4.333-4.333-1.944-4.334-4.333-4.334zm1.957 3.704c-.081.18-.26.297-.457.297h-.833v2.666c0 .368-.298.667-.667.667s-.667-.299-.667-.667v-2.667h-.833c-.197 0-.376-.116-.457-.297-.08-.18-.047-.391.085-.538l1.5-1.667c.095-.105.23-.165.372-.165s.277.06.372.165l1.5 1.667c.132.148.165.358.085.539z"
|
16
|
-
fill="#800080ab"
|
17
|
-
/>
|
18
|
-
<g fill="#730073">
|
19
|
-
<path
|
20
|
-
d="m14.98 16.48c-.547.807-.893 1.76-.967 2.787-.653.06-1.193.067-1.347.067-.48 0-4.667-.047-4.667-1.667v-2.667c0 1.62 4.187 1.667 4.667 1.667.227 0 1.267-.014 2.314-.187z"
|
21
|
-
/>
|
22
|
-
<path
|
23
|
-
d="m17.333 13.667c0 1.62-4.189 1.667-4.667 1.667s-4.666-.048-4.666-1.667v-2.667c0 1.62 4.189 1.667 4.667 1.667s4.666-.047 4.666-1.667z"
|
24
|
-
/>
|
25
|
-
<path
|
26
|
-
d="m12.667 11.333c-.478 0-4.667-.047-4.667-1.666s4.189-1.667 4.667-1.667 4.667.047 4.667 1.667-4.19 1.666-4.667 1.666z"
|
27
|
-
/>
|
28
|
-
</g>
|
29
|
-
</svg>
|
30
|
-
<div>
|
31
|
-
<button class="btn btn-outline-danger ">Upload</button>
|
32
|
-
|
33
|
-
</div>
|
34
|
-
<div class="circle">
|
35
|
-
No
|
36
|
-
</div>
|
37
|
-
|
38
|
-
</div>
|
1
|
+
<div class="no-file-transfer flex-column mt-5" >
|
2
|
+
<svg
|
3
|
+
id="bold"
|
4
|
+
enable-background="new 0 0 32 32"
|
5
|
+
height="512"
|
6
|
+
viewBox="0 0 32 32"
|
7
|
+
width="512"
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
9
|
+
>
|
10
|
+
<path
|
11
|
+
d="m26 32h-20c-3.314 0-6-2.686-6-6v-20c0-3.314 2.686-6 6-6h20c3.314 0 6 2.686 6 6v20c0 3.314-2.686 6-6 6z"
|
12
|
+
fill="#80008030"
|
13
|
+
/>
|
14
|
+
<path
|
15
|
+
d="m19.667 15.333c-2.389 0-4.334 1.944-4.334 4.333s1.944 4.334 4.334 4.334 4.333-1.944 4.333-4.333-1.944-4.334-4.333-4.334zm1.957 3.704c-.081.18-.26.297-.457.297h-.833v2.666c0 .368-.298.667-.667.667s-.667-.299-.667-.667v-2.667h-.833c-.197 0-.376-.116-.457-.297-.08-.18-.047-.391.085-.538l1.5-1.667c.095-.105.23-.165.372-.165s.277.06.372.165l1.5 1.667c.132.148.165.358.085.539z"
|
16
|
+
fill="#800080ab"
|
17
|
+
/>
|
18
|
+
<g fill="#730073">
|
19
|
+
<path
|
20
|
+
d="m14.98 16.48c-.547.807-.893 1.76-.967 2.787-.653.06-1.193.067-1.347.067-.48 0-4.667-.047-4.667-1.667v-2.667c0 1.62 4.187 1.667 4.667 1.667.227 0 1.267-.014 2.314-.187z"
|
21
|
+
/>
|
22
|
+
<path
|
23
|
+
d="m17.333 13.667c0 1.62-4.189 1.667-4.667 1.667s-4.666-.048-4.666-1.667v-2.667c0 1.62 4.189 1.667 4.667 1.667s4.666-.047 4.666-1.667z"
|
24
|
+
/>
|
25
|
+
<path
|
26
|
+
d="m12.667 11.333c-.478 0-4.667-.047-4.667-1.666s4.189-1.667 4.667-1.667 4.667.047 4.667 1.667-4.19 1.666-4.667 1.666z"
|
27
|
+
/>
|
28
|
+
</g>
|
29
|
+
</svg>
|
30
|
+
<div>
|
31
|
+
<button class="btn btn-outline-danger ">Upload</button>
|
32
|
+
|
33
|
+
</div>
|
34
|
+
<div class="circle">
|
35
|
+
No
|
36
|
+
</div>
|
37
|
+
|
38
|
+
</div>
|