tools-theme 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +50 -0
- data/_data/about/en/about.json +9 -0
- data/_data/blog/alertbar.yml +3 -0
- data/_data/blog/authors.yml +11 -0
- data/_data/blog/blog.yml +3 -0
- data/_data/blog/nav.json +14 -0
- data/_data/blog/share.yml +28 -0
- data/_data/contact/en/contact.json +39 -0
- data/_data/customcdns/customcdns.yml +0 -0
- data/_data/disclaimer/en/disclaimer.json +38 -0
- data/_data/feature/en/compress-pdf.json +194 -0
- data/_data/feature/en/split-pdf.json +110 -0
- data/_data/feature/hi/compress-pdf.json +82 -0
- data/_data/files/en/jpg.json +153 -0
- data/_data/files/en/png.json +61 -0
- data/_data/footer/en/data.json +91 -0
- data/_data/footer/hi/data.json +85 -0
- data/_data/header/en/data.json +144 -0
- data/_data/header/hi/data.json +145 -0
- data/_data/help/en/help.json +0 -0
- data/_data/home/en/en.json +253 -0
- data/_data/home/hi/hi.json +87 -0
- data/_data/languagesupport/compress-pdf-langs.json +12 -0
- data/_data/languagesupport/index-langs.json +14 -0
- data/_data/privacy/en/privacyPolicy.json +266 -0
- data/_data/rating/rating.json +1 -0
- data/_data/termAndCondition/en/termAndCondition.json +359 -0
- data/_includes/Rating/rating.html +89 -0
- data/_includes/Rating/structureddata.html +35 -0
- data/_includes/Usp/usp.html +20 -0
- data/_includes/author_bio.html +16 -0
- data/_includes/authors/authors.html +25 -0
- data/_includes/cssfile/links.html +13 -0
- data/_includes/custom-head.html +32 -0
- data/_includes/disqus_comments.html +11 -0
- data/_includes/dropdown/langdropdown.html +22 -0
- data/_includes/fileformat/comparisonfiles.html +153 -0
- data/_includes/fileformat/fileformatdetail.html +104 -0
- data/_includes/footer/index.html +54 -0
- data/_includes/google-analytics.html +23 -0
- data/_includes/head/index.html +125 -0
- data/_includes/header/blogHeader.html +28 -0
- data/_includes/header/index.html +92 -0
- data/_includes/paginationBlogPage.html +35 -0
- data/_includes/paginationPostPage.html +15 -0
- data/_includes/postauthorbio.html +17 -0
- data/_includes/postbox.html +30 -0
- data/_includes/script.html +14 -0
- data/_includes/section/alertbar.html +12 -0
- data/_includes/section/count.html +24 -0
- data/_includes/section/recent_posts.html +43 -0
- data/_includes/section/related_categories_post.html +74 -0
- data/_includes/section/related_tag_post.html +60 -0
- data/_includes/share/socialshare.html +49 -0
- data/_layouts/aboutUs.html +22 -0
- data/_layouts/blog.html +67 -0
- data/_layouts/categories.html +26 -0
- data/_layouts/contactUs.html +23 -0
- data/_layouts/default.html +1 -0
- data/_layouts/disclaimer.html +36 -0
- data/_layouts/feature.html +143 -0
- data/_layouts/help.html +23 -0
- data/_layouts/home.html +137 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +69 -0
- data/_layouts/privacyPolicy.html +401 -0
- data/_layouts/termAndCondition.html +402 -0
- data/assets/bulb.svg +1 -0
- data/assets/cloud.svg +1 -0
- data/assets/cross.svg +5 -0
- data/assets/css/blog.css +481 -0
- data/assets/css/tools.css +1564 -0
- data/assets/easy.svg +1 -0
- data/assets/facebook.svg +5 -0
- data/assets/files/en/jpg.json +61 -0
- data/assets/files/en/png.json +61 -0
- data/assets/guaranty.svg +1 -0
- data/assets/images/Ankita.webp +0 -0
- data/assets/images/Anushka.webp +0 -0
- data/assets/images/Arjyahi.webp +0 -0
- data/assets/images/Nikita.webp +0 -0
- data/assets/images/alka.webp +0 -0
- data/assets/images/avatar.png +0 -0
- data/assets/images/keshav.webp +0 -0
- data/assets/images/logo.png +0 -0
- data/assets/images/paavan.webp +0 -0
- data/assets/images/rating.png +0 -0
- data/assets/instagram.svg +5 -0
- data/assets/js/TopScroll.js +8 -0
- data/assets/linkdin.svg +5 -0
- data/assets/pdf.svg +20 -0
- data/assets/protect.svg +1 -0
- data/assets/star.svg +5 -0
- data/assets/support.svg +1 -0
- data/assets/twitter.svg +5 -0
- data/assets/youtube.svg +5 -0
- metadata +182 -0
@@ -0,0 +1,54 @@
|
|
1
|
+
{% assign lang = page.lang %}
|
2
|
+
{% assign dataToShow = site.data.footer[lang].data %}
|
3
|
+
<footer class="footer">
|
4
|
+
<div class="container">
|
5
|
+
<div class="footer-wrapper">
|
6
|
+
{%- if dataToShow.logo -%}
|
7
|
+
<div class="footer-logo-cont"><img loading="lazy" src="{{dataToShow.logo}}" title="logo"
|
8
|
+
class="footer-logo">
|
9
|
+
<div class="footer-title">{{dataToShow.heading}}</div>
|
10
|
+
</div>
|
11
|
+
{%- endif -%}
|
12
|
+
<nav class="footer-nav">
|
13
|
+
<ul class="footer-ul">
|
14
|
+
<h2 class="footer-ul-title">Company</h2>
|
15
|
+
{% for data in dataToShow.company %}
|
16
|
+
<a class="footer-link" href="{{data.url}}">{{data.name}}</a>
|
17
|
+
{% endfor %}
|
18
|
+
</ul>
|
19
|
+
<ul class="footer-ul">
|
20
|
+
<h2 class="footer-ul-title">Product</h2>
|
21
|
+
{% for data in dataToShow.product %}
|
22
|
+
<a class="footer-link" href="{{data.url}}">{{data.name}}</a>
|
23
|
+
{% endfor %}
|
24
|
+
</ul>
|
25
|
+
<ul class="footer-ul">
|
26
|
+
<h2 class="footer-ul-title">Network sites</h2>
|
27
|
+
{% for data in dataToShow.networkSites %}
|
28
|
+
<a class="footer-link" href="{{data.url}}">{{data.name}}</a>
|
29
|
+
{% endfor %}
|
30
|
+
</ul>
|
31
|
+
</nav>
|
32
|
+
</div>
|
33
|
+
<div class="jKLUgT"></div>
|
34
|
+
<div class="d-flex py-4">
|
35
|
+
{% for data in dataToShow.social %}
|
36
|
+
<a class="cVpsCJ px-3" target="_blank" rel="noopener noreferrer"
|
37
|
+
href="{{data.url}}" title="LinkedIn">
|
38
|
+
<div class="sDfHB" style="width:24px;height:24px">
|
39
|
+
<img loading="lazy" src="{{data.logo}}" title="{{data.title}}">
|
40
|
+
</div>
|
41
|
+
</a>
|
42
|
+
{% endfor %}
|
43
|
+
</div>
|
44
|
+
<div class="privacy-footer">
|
45
|
+
<div class="footer-msg">{{dataToShow.messege}}
|
46
|
+
</div>
|
47
|
+
<div class="privacy-links">
|
48
|
+
{% for data in dataToShow.legal %}
|
49
|
+
<div class="privacy-links-item"><a href="{{data.url}}">{{data.name}}</a></div>
|
50
|
+
{% endfor %}
|
51
|
+
</div>
|
52
|
+
</div>
|
53
|
+
</footer>
|
54
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
{% if jekyll.environment == 'production' and site.production_google_analytics %}
|
2
|
+
{%- assign GA_ID = site.production_google_analytics -%}
|
3
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ GA_ID }}"></script>
|
4
|
+
<script>
|
5
|
+
window.dataLayer = window.dataLayer || [];
|
6
|
+
function gtag() { dataLayer.push(arguments); }
|
7
|
+
gtag('js', new Date());
|
8
|
+
|
9
|
+
gtag('config', '{{ GA_ID }}');
|
10
|
+
</script>
|
11
|
+
{% endif %}
|
12
|
+
|
13
|
+
{% if jekyll.environment == 'development' and site.development_google_analytics %}
|
14
|
+
{%- assign GA_ID = site.development_google_analytics -%}
|
15
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ GA_ID }}"></script>
|
16
|
+
<script>
|
17
|
+
window.dataLayer = window.dataLayer || [];
|
18
|
+
function gtag(){dataLayer.push(arguments);}
|
19
|
+
gtag('js', new Date());
|
20
|
+
|
21
|
+
gtag('config', '{{ GA_ID }}');
|
22
|
+
</script>
|
23
|
+
{% endif %}
|
@@ -0,0 +1,125 @@
|
|
1
|
+
<head>
|
2
|
+
{% assign file = page.fileName %}
|
3
|
+
{% assign lang = page.lang %}
|
4
|
+
{% assign dataArr = site.data.[page.folderName][lang][file] %}
|
5
|
+
{% assign dataToShow = dataArr %}
|
6
|
+
{% assign title = dataToShow.TITLE | replace:"$variable", page.value | default:page.title | default: site.title %}
|
7
|
+
{% assign description = dataToShow.META | replace:"$variable", page.value | default: site.description %}
|
8
|
+
{% assign keywords = dataToShow.keywords %}
|
9
|
+
{% assign favicon = site.favicon %}
|
10
|
+
{%- assign langsupport = page.langsupport -%}
|
11
|
+
{%- assign variable = site.data.languagesupport[langsupport]-%}
|
12
|
+
{{site.weburl}}
|
13
|
+
<meta charset="utf-8">
|
14
|
+
<link rel="shortcut icon" href="{{favicon}}">
|
15
|
+
<meta name="viewport" content="width=device-width">
|
16
|
+
<title>{{title}}</title>
|
17
|
+
{%- if dataToShow.keywords -%}
|
18
|
+
<meta name="keywords" content="{{keywords}}" />
|
19
|
+
{%- endif -%}
|
20
|
+
<meta name="description" content="{{description}}">
|
21
|
+
<link rel="preload" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
|
22
|
+
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous" as="style" onload="this.rel='stylesheet'">
|
23
|
+
<link rel="canonical" href="{{site.url | append: page.url}}">
|
24
|
+
<link rel="preconnect" href="https://fonts.gstatic.com">
|
25
|
+
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap" rel="stylesheet">
|
26
|
+
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" as="style" onload="this.rel='stylesheet'">
|
27
|
+
<link rel="stylesheet" href="/assets/css/tools.css">
|
28
|
+
<meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}">
|
29
|
+
<meta property="og:title" content="{{title}}">
|
30
|
+
<meta property="og:description" content="{{description}}">
|
31
|
+
<meta property="og:type" content="website">
|
32
|
+
<meta data-rh="true" property="og:url" content="{{site.url | append: page.url}}">
|
33
|
+
<meta data-rh="true" property="og:site_name" content="{{site.name}}">
|
34
|
+
<meta data-rh="true" property="twitter:domain" content="{{site.url}}">
|
35
|
+
<meta data-rh="true" property="twitter:url" content="{{site.url | append: page.url}}">
|
36
|
+
<meta data-rh="true" name="twitter:title" content="{{title}}">
|
37
|
+
<meta data-rh="true" name="twitter:description" content="{{description}}">
|
38
|
+
<meta data-rh="true" name="twitter:image:src" content="{{site.url}}{{favicon}}">
|
39
|
+
{%- for item in variable.langsupport -%}
|
40
|
+
<link data-rh="true" rel="alternate" href="{{site.url | append: item.permalink}}" hreflang="{{item.hreflang}}">
|
41
|
+
{%- endfor -%}
|
42
|
+
{% include cssfile/links.html %}
|
43
|
+
<script type="application/ld+json">
|
44
|
+
{
|
45
|
+
"@context": "http://schema.org",
|
46
|
+
"@type": "Organization",
|
47
|
+
"url": "{{site.siteurl}}",
|
48
|
+
"logo": "{{site.siteurl}}{{site.logo}}"
|
49
|
+
}
|
50
|
+
</script>
|
51
|
+
<script type="application/ld+json">
|
52
|
+
{
|
53
|
+
"@context": "http://schema.org",
|
54
|
+
"@type": "WebSite",
|
55
|
+
"name": "{{site.name}}",
|
56
|
+
"alternateName": "{{site.alternateName}}",
|
57
|
+
"url": "{{site.siteurl}}"}
|
58
|
+
</script>
|
59
|
+
{%- if dataToShow.HOW_TO_CONTENT.size>0 -%}
|
60
|
+
|
61
|
+
<script type="application/ld+json">
|
62
|
+
{
|
63
|
+
"@context": "http://schema.org",
|
64
|
+
"@type": "HowTo",
|
65
|
+
"name": "{{dataToShow.HOW_TO_CONTENT.heading | replace:'"', "'" }}",
|
66
|
+
"image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
|
67
|
+
"step": [
|
68
|
+
{%- for item in dataToShow.HOW_TO_CONTENT.steps-%}
|
69
|
+
{%- if forloop.last == true -%}
|
70
|
+
{ "@type": "HowToStep",
|
71
|
+
"text": "{{item | replace:'"', "'" }}",
|
72
|
+
"image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
|
73
|
+
"url": "{{site.siteurl}}#step{{ forloop.index }}"
|
74
|
+
}
|
75
|
+
{%- else -%}
|
76
|
+
{ "@type": "HowToStep",
|
77
|
+
"text": "{{item | replace:'"', "'" }}",
|
78
|
+
"image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
|
79
|
+
"url": "{{site.siteurl}}#step{{ forloop.index}}"
|
80
|
+
},
|
81
|
+
{%- endif -%}
|
82
|
+
{%- endfor -%}
|
83
|
+
]
|
84
|
+
}
|
85
|
+
</script>
|
86
|
+
{%- endif -%}
|
87
|
+
|
88
|
+
{%- if dataToShow.FAQ.size>0 -%}
|
89
|
+
|
90
|
+
<script type="application/ld+json">
|
91
|
+
{
|
92
|
+
"@context": "http://schema.org",
|
93
|
+
"@type": "FAQPage",
|
94
|
+
"mainEntity": [
|
95
|
+
{%- for item in dataToShow.FAQ-%}
|
96
|
+
{%- if forloop.last == true -%}
|
97
|
+
{"@type": "Question",
|
98
|
+
"name": "{{item.question | replace:'"', "'" }}",
|
99
|
+
"acceptedAnswer": {
|
100
|
+
"@type": "Answer",
|
101
|
+
"text": "{{item.answer | replace:'"', "'" }}"
|
102
|
+
}
|
103
|
+
}
|
104
|
+
{%- else -%}
|
105
|
+
{"@type": "Question",
|
106
|
+
"name": "{{item.question | replace:'"', "'" }}",
|
107
|
+
"acceptedAnswer": {
|
108
|
+
"@type": "Answer",
|
109
|
+
"text": "{{item.answer | replace:'"', "'" }}"
|
110
|
+
}
|
111
|
+
},
|
112
|
+
{%- endif -%}
|
113
|
+
{%- endfor -%}
|
114
|
+
]
|
115
|
+
}
|
116
|
+
</script>
|
117
|
+
{%- endif -%}
|
118
|
+
|
119
|
+
{%- if page.tool -%}
|
120
|
+
{%- include Rating/structureddata.html -%}
|
121
|
+
{%- endif -%}
|
122
|
+
<!-- GA -->
|
123
|
+
{%- include google-analytics.html -%}
|
124
|
+
</head>
|
125
|
+
|
@@ -0,0 +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>
|
@@ -0,0 +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
|
+
|
@@ -0,0 +1,35 @@
|
|
1
|
+
<!-- pagination -->
|
2
|
+
<div class="bottompagination">
|
3
|
+
<div class="pointerup"><i class="fa fa-caret-up"></i></div>
|
4
|
+
<span class="navigation" role="navigation"></span>
|
5
|
+
</div>
|
6
|
+
{% if paginator.total_pages > 1 %}
|
7
|
+
<div class="blog-pagination">
|
8
|
+
{% if paginator.previous_page %}
|
9
|
+
<a style="color: #00ab6b; font-weight: 900;"
|
10
|
+
href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">« Prev</a>
|
11
|
+
{% else %}
|
12
|
+
<span class="text-muted">« Prev</span>
|
13
|
+
{% endif %}
|
14
|
+
|
15
|
+
{% for page in (1..paginator.total_pages) %}
|
16
|
+
{% if page == paginator.page %}
|
17
|
+
<span class="webjeda text-muted">{{ page }}</span>
|
18
|
+
{% elsif page == 1 %}
|
19
|
+
<a href="/blog" style="color: #00ab6b; font-weight: 900;">{{ page }}</a>
|
20
|
+
{% else %}
|
21
|
+
<a style="color: #00ab6b; font-weight: 900;"
|
22
|
+
href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page
|
23
|
+
}}</a>
|
24
|
+
{% endif %}
|
25
|
+
{% endfor %}
|
26
|
+
|
27
|
+
{% if paginator.next_page %}
|
28
|
+
<a style="color:#00ab6b; font-weight: 900;"
|
29
|
+
href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next
|
30
|
+
»</a>
|
31
|
+
{% else %}
|
32
|
+
<span class="text-muted">Next »</span>
|
33
|
+
{% endif %}
|
34
|
+
</div>
|
35
|
+
{% endif %}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<div class="post-links">
|
2
|
+
<div class="bottompagination">
|
3
|
+
<div class="pointerup"><i class="fa fa-caret-up"></i></div>
|
4
|
+
<span class="navigation" role="navigation">
|
5
|
+
<div class="pagination">
|
6
|
+
{% if page.previous.url %}
|
7
|
+
<a class="ml-1 mr-1 pageUrl" href="{{page.previous.url}}">« Prev</a>
|
8
|
+
{% endif %}
|
9
|
+
{% if page.next.url %}
|
10
|
+
<a class="ml-1 mr-1 pageUrl" href="{{page.next.url}}"> Next »</a>
|
11
|
+
{% endif %}
|
12
|
+
</div>
|
13
|
+
</span>
|
14
|
+
</div>
|
15
|
+
</div>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
{%- assign author = page.author -%}
|
2
|
+
{%- assign collection = [author] -%}
|
3
|
+
{%- for item in collection -%}
|
4
|
+
{%- if forloop.index==1 -%}
|
5
|
+
{%- assign authorName = item -%}
|
6
|
+
{%- endif -%}
|
7
|
+
{%- if forloop.index==2 -%}
|
8
|
+
{%- assign image = item -%}
|
9
|
+
{%- endif -%}
|
10
|
+
{%- if forloop.index==3 -%}
|
11
|
+
{%- assign bio = item -%}
|
12
|
+
{%- endif -%}
|
13
|
+
{%- if forloop.index==4 -%}
|
14
|
+
{%- assign twitter = item -%}
|
15
|
+
{%- endif -%}
|
16
|
+
{%- endfor -%}
|
17
|
+
|
@@ -0,0 +1,30 @@
|
|
1
|
+
{%- include /authors/authors.html -%}
|
2
|
+
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
3
|
+
<div class="card h-100">
|
4
|
+
<a href="{{ post.url }}">
|
5
|
+
<img src="{{ post.image }}" class="card-img-top" height="208px" width="100%" loading="lazy" alt="">
|
6
|
+
</a>
|
7
|
+
<div class="card-body">
|
8
|
+
<a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
|
9
|
+
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
10
|
+
</a>
|
11
|
+
</div>
|
12
|
+
<div class="card-footer bg-white">
|
13
|
+
<div class="wrapfooter">
|
14
|
+
{% if post.author %}
|
15
|
+
<span class="meta-footer-thumb">
|
16
|
+
<img class="author-thumb" loading="lazy" src="{{image}}" alt="{{ authorName }}">
|
17
|
+
</span>
|
18
|
+
{% endif %}
|
19
|
+
<span class="author-meta">
|
20
|
+
<span class="post-name">
|
21
|
+
<a target="_blank" href="/blog">{{authorName}}</a>
|
22
|
+
</span><br>
|
23
|
+
<span class="post-date">{{post.date | date_to_string }}</span>
|
24
|
+
</span>
|
25
|
+
<span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
|
26
|
+
title="Read Story">Read More</a></span>
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
</div>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{% assign scriptData = site.data.[page.folderName][lang][file] %}
|
2
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
3
|
+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
|
4
|
+
{{site.data.customcdns.customcdns.jsfiles}}
|
5
|
+
{%- if scriptData.jsfilepaths -%}
|
6
|
+
{%- for path in scriptData.jsfilepaths -%}
|
7
|
+
<script src="{{path}}"></script>
|
8
|
+
{%- endfor -%}
|
9
|
+
{%- endif -%}
|
10
|
+
{%- if scriptData.jscdns -%}
|
11
|
+
{%- for item in scriptData.jscdns -%}
|
12
|
+
{{item}}
|
13
|
+
{%- endfor -%}
|
14
|
+
{%- endif -%}
|