appscms-tools-theme 1.4.8 → 1.5.2
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 +4 -4
- data/_data/blog/blog.json +268 -268
- data/_data/rating/rating.json +1 -1
- data/_includes/Rating/rating.html +66 -65
- data/_includes/author_bio.html +3 -2
- data/_includes/cssfile/links.html +7 -8
- data/_includes/custom-head.html +10 -19
- data/_includes/customblog/recentposts.html +3 -2
- data/_includes/customblog/relatedposts.html +6 -4
- data/_includes/feature.html +4 -2
- data/_includes/fileformat/comparisonfiles.html +139 -133
- data/_includes/fileformat/fileformatdetail.html +91 -88
- data/_includes/fileformat/fileinfoformat.html +3 -3
- data/_includes/footer/index.html +4 -3
- data/_includes/head/index.html +7 -6
- data/_includes/header/blogHeader.html +4 -2
- data/_includes/header/index.html +86 -82
- data/_includes/postbox.html +6 -4
- data/_includes/script.html +17 -12
- data/_includes/section/recent_posts.html +33 -32
- data/_includes/section/related_categories_post.html +7 -5
- data/_layouts/blog.html +8 -4
- data/_layouts/download.html +214 -184
- data/_layouts/feature.html +10 -6
- data/_layouts/fileInfo.html +24 -22
- data/_layouts/home.html +11 -7
- data/_layouts/post.html +2 -1
- metadata +2 -2
|
@@ -3,97 +3,100 @@
|
|
|
3
3
|
{% assign folder = page.folderName %}
|
|
4
4
|
{% assign accessData= site.data[folder][lang][file] %}
|
|
5
5
|
{% assign filesData= accessData.display_formats %}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
6
|
+
{%- for i in filesData -%}
|
|
7
|
+
{%- assign item = i | downcase -%}
|
|
8
|
+
{%- assign fileData = site.data.files[accessData.filelang][item] -%}
|
|
9
|
+
{%- assign static = site.static_files -%}
|
|
10
|
+
{%- if fileData.size>0 -%}
|
|
11
|
+
<div class="col-12">
|
|
12
|
+
<h2 class="feature-h1 text-left my-4">{{fileData.Format}}</h2>
|
|
13
|
+
</div>
|
|
14
|
+
<table class="table table-bordered ">
|
|
15
|
+
<tbody>
|
|
16
|
+
{%- if fileData.ShortName -%}
|
|
17
|
+
<tr>
|
|
18
|
+
<th scope="row" class="pr-5">Short Name </th>
|
|
19
|
+
<td>{{fileData.ShortName}}</td>
|
|
20
|
+
</tr>
|
|
21
|
+
{%- endif -%}
|
|
22
|
+
{%- if fileData.FullName -%}
|
|
23
|
+
<tr>
|
|
24
|
+
<th scope="row" class="pr-5">Full Name </th>
|
|
25
|
+
<td>{{fileData.FullName}}</td>
|
|
26
|
+
</tr>
|
|
27
|
+
{%- endif -%}
|
|
28
|
+
{%- if fileData.Category -%}
|
|
29
|
+
<tr>
|
|
30
|
+
<th scope="row" class="pr-5">Category</th>
|
|
31
|
+
<td>{{fileData.Category}}</td>
|
|
32
|
+
</tr>
|
|
33
|
+
{%- endif -%}
|
|
34
|
+
{%- if fileData.Pros -%}
|
|
35
|
+
<tr>
|
|
36
|
+
<th scope="row" class="pr-5">Pros</th>
|
|
37
|
+
<td>{{fileData.Pros}}</td>
|
|
38
|
+
</tr>
|
|
39
|
+
{%- endif -%}
|
|
40
|
+
{%- if fileData.Cons -%}
|
|
41
|
+
<tr>
|
|
42
|
+
<th scope="row" class="pr-5">Cons</th>
|
|
43
|
+
<td>{{fileData.Cons}}</td>
|
|
44
|
+
</tr>
|
|
45
|
+
{%- endif -%}
|
|
46
|
+
{%- if fileData.BasicInformation -%}
|
|
47
|
+
<tr>
|
|
48
|
+
<th scope="row" class="pr-5">Basic Information</th>
|
|
49
|
+
<td>{{fileData.BasicInformation}}</td>
|
|
50
|
+
</tr>
|
|
51
|
+
{%- endif -%}
|
|
52
|
+
{%- if fileData.DetailedInformation -%}
|
|
53
|
+
<tr>
|
|
54
|
+
<th scope="row" class="pr-5">Detailed Information</th>
|
|
55
|
+
<td>{{fileData.DetailedInformation}}</td>
|
|
56
|
+
</tr>
|
|
57
|
+
{%- endif -%}
|
|
58
|
+
{%- if fileData.Createdby and fileData.CreatedbyLink -%}
|
|
59
|
+
<tr>
|
|
60
|
+
<th scope="row" class="pr-5">Created by</th>
|
|
61
|
+
<td> <a class="software-name" href="{{fileData.CreatedbyLink}}"> {{fileData.Createdby}}</a></td>
|
|
62
|
+
</tr>
|
|
63
|
+
{%- endif -%}
|
|
64
|
+
|
|
65
|
+
{%- if fileData.CreatedInYear -%}
|
|
66
|
+
<tr>
|
|
67
|
+
<th scope="row" class="pr-5">Created In Year</th>
|
|
68
|
+
<td>{{fileData.CreatedInYear}}</td>
|
|
69
|
+
</tr>
|
|
70
|
+
{%- if fileData.Softwaresused -%}
|
|
71
|
+
<tr>
|
|
72
|
+
<th scope="row">Platforms Supported</th>
|
|
73
|
+
<td class="d-flex flex-wrap ">
|
|
74
74
|
{%- for item in fileData.Softwaresused -%}
|
|
75
|
-
<ul class="pl-0 pr-md-5"
|
|
75
|
+
<ul class="pl-0 pr-md-5">
|
|
76
76
|
<li><b>{{item.platform}}</b> </li>
|
|
77
|
-
<div class="pl-0 d-flex flex-wrap justify-content-between softwares-section flex-column "
|
|
77
|
+
<div class="pl-0 d-flex flex-wrap justify-content-between softwares-section flex-column ">
|
|
78
78
|
{%- for data in item.softwares -%}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
79
|
+
<div class="d-flex mb-3">
|
|
80
|
+
{%- if data.image -%}
|
|
81
|
+
<img src={{data.image}} alt="software" loading='lazy' {%- if site.crossorigin -%}
|
|
82
|
+
crossorigin {%- endif -%}>
|
|
83
|
+
{%- endif -%}
|
|
84
|
+
<div>
|
|
85
|
+
<a class="d-block software-name" href="{{data.link}}">
|
|
86
|
+
<div>{{data.name}}</div>
|
|
87
|
+
</a>
|
|
88
|
+
<div class="software-value">{{data.type}}</div>
|
|
89
|
+
</div>
|
|
90
|
+
</div>
|
|
88
91
|
{%- endfor -%}
|
|
89
92
|
</div>
|
|
90
93
|
</ul>
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
94
|
+
{%- endfor -%}
|
|
95
|
+
</td>
|
|
96
|
+
</tr>
|
|
97
|
+
{%- endif -%}
|
|
98
|
+
{%- endif -%}
|
|
99
|
+
</tbody>
|
|
100
|
+
</table>
|
|
101
|
+
{%- endif -%}
|
|
102
|
+
{%- endfor -%}
|
|
@@ -16,9 +16,8 @@
|
|
|
16
16
|
<li class="file-li">
|
|
17
17
|
<h2 class="feature-h1 text-left my-4">{{fileData.Format}}</h2>
|
|
18
18
|
{%- if fileData.fileImg -%}
|
|
19
|
-
<img src="{{fileData.fileImg }}" alt="">
|
|
19
|
+
<img src="{{fileData.fileImg }}" alt="" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
20
20
|
{%- endif -%}
|
|
21
|
-
<img src="" alt="">
|
|
22
21
|
<ol class="file-info-item-list">
|
|
23
22
|
{%- if fileData.Pros -%}
|
|
24
23
|
<li>
|
|
@@ -66,7 +65,8 @@
|
|
|
66
65
|
{%- for data in item.softwares -%}
|
|
67
66
|
<div class="d-flex mb-3">
|
|
68
67
|
{%- if data.image -%}
|
|
69
|
-
<img src={{data.image}} alt="software" loading='lazy'
|
|
68
|
+
<img src={{data.image}} alt="software" loading='lazy' {%- if site.crossorigin
|
|
69
|
+
-%} crossorigin {%- endif -%}>
|
|
70
70
|
{%- endif -%}
|
|
71
71
|
<div>
|
|
72
72
|
<a class="d-block software-name" href="{{data.link}}">
|
data/_includes/footer/index.html
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
<div class="container">
|
|
7
7
|
<div class="footer-wrapper">
|
|
8
8
|
{%- if dataToShow.logo -%}
|
|
9
|
-
<div class="footer-logo-cont"><img loading="lazy" src="{{dataToShow.logo}}" title="logo"
|
|
10
|
-
|
|
9
|
+
<div class="footer-logo-cont"><img loading="lazy" src="{{dataToShow.logo}}" title="logo" class="footer-logo"
|
|
10
|
+
{%- if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
11
11
|
<div class="footer-title">{{dataToShow.heading}}</div>
|
|
12
12
|
</div>
|
|
13
13
|
{%- endif -%}
|
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
{% for data in dataToShow.social %}
|
|
38
38
|
<a class="cVpsCJ px-3" target="_blank" rel="noopener noreferrer" href="{{data.url}}" title="LinkedIn">
|
|
39
39
|
<div class="sDfHB" style="width:24px;height:24px">
|
|
40
|
-
<img loading="lazy" src="{{data.logo}}" title="{{data.title}}"
|
|
40
|
+
<img loading="lazy" src="{{data.logo}}" title="{{data.title}}" {%- if site.crossorigin -%}
|
|
41
|
+
crossorigin {%- endif -%}>
|
|
41
42
|
</div>
|
|
42
43
|
</a>
|
|
43
44
|
{% endfor %}
|
data/_includes/head/index.html
CHANGED
|
@@ -15,17 +15,18 @@
|
|
|
15
15
|
{%- endif -%}
|
|
16
16
|
<meta name="description" content="{{description}}" />
|
|
17
17
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
|
|
18
|
-
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous"
|
|
18
|
+
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous" {%- if
|
|
19
|
+
site.crossorigin -%} crossorigin {%- endif -%} />
|
|
19
20
|
<link rel="canonical" href="{{site.url | append: page.url}}" />
|
|
20
|
-
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap"
|
|
21
|
-
|
|
21
|
+
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap" rel="stylesheet"
|
|
22
|
+
{%- if site.crossorigin -%} crossorigin {%- endif -%} />
|
|
22
23
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
|
|
23
24
|
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
|
|
24
|
-
crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
25
|
+
crossorigin="anonymous" referrerpolicy="no-referrer" {%- if site.crossorigin -%} crossorigin {%- endif -%} />
|
|
25
26
|
{%- if dataToShow.css -%}
|
|
26
|
-
<link rel="stylesheet" href="{{dataToShow.css}}" />
|
|
27
|
+
<link rel="stylesheet" href="{{dataToShow.css}}" {%- if site.crossorigin -%} crossorigin {%- endif -%} />
|
|
27
28
|
{%- else -%}
|
|
28
|
-
<link rel="stylesheet" href="/assets/css/tools.css" />
|
|
29
|
+
<link rel="stylesheet" href="/assets/css/tools.css" {%- if site.crossorigin -%} crossorigin {%- endif -%} />
|
|
29
30
|
{%- endif -%}
|
|
30
31
|
<meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}" />
|
|
31
32
|
<meta property="og:title" content="{{title}}" />
|
|
@@ -6,7 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
{% else %}
|
|
8
8
|
<a href="/">
|
|
9
|
-
<img class="logo-height" loading="lazy" src="{{navbar.navbarBrandLogo}}" alt="{{navbar.navbarBrandLogo}}"
|
|
9
|
+
<img class="logo-height" loading="lazy" src="{{navbar.navbarBrandLogo}}" alt="{{navbar.navbarBrandLogo}}"
|
|
10
|
+
style="height: 40px; width: 40px;" class="navbar-brand-image" {%- if site.crossorigin -%} crossorigin
|
|
11
|
+
{%- endif -%}>
|
|
10
12
|
|
|
11
13
|
</a>
|
|
12
14
|
{% endif %}
|
|
@@ -25,4 +27,4 @@
|
|
|
25
27
|
</ul>
|
|
26
28
|
</div>
|
|
27
29
|
</nav>
|
|
28
|
-
</header>
|
|
30
|
+
</header>
|
data/_includes/header/index.html
CHANGED
|
@@ -2,91 +2,95 @@
|
|
|
2
2
|
{% assign dataToShow = site.data.header[lang].data %}
|
|
3
3
|
{% assign file = page.fileName %}
|
|
4
4
|
{% assign folder = page.folderName %}
|
|
5
|
-
{% assign
|
|
5
|
+
{% assign Data= site.data[folder][lang][file] %}
|
|
6
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
7
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
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 -%}
|
|
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 }}" alt="{{ dataToShow.navbarBrandLogo }}" {%- if
|
|
15
|
+
site.crossorigin -%} crossorigin {%- endif -%}>
|
|
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>
|
|
77
22
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
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"
|
|
28
|
+
aria-haspopup="true" aria-expanded="false">
|
|
29
|
+
{{Data.megaMenu.nav-link-name}}
|
|
30
|
+
</a>
|
|
31
|
+
<ul class="dropmenu dropdown-menu" aria-labelledby="navbarDropdown">
|
|
32
|
+
<div class="inner-dropdown">
|
|
33
|
+
{%- for item in Data.megaMenu.dropdown -%}
|
|
34
|
+
<div class="catPad mb-4">
|
|
35
|
+
<li class="text-muted">{{item.categoryName}}</li>
|
|
36
|
+
<div> {%- for item in item.links -%}
|
|
37
|
+
<li>
|
|
38
|
+
<a href="{{item.url}}">
|
|
39
|
+
{%- if item.iconSrc -%}
|
|
40
|
+
<img class="d-inline mr-2" loading="lazy" style="height:20px;width:20px;" src="{{item.iconSrc}}"
|
|
41
|
+
{%- if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
42
|
+
{%- endif -%}
|
|
43
|
+
{{item.name}}
|
|
44
|
+
</a>
|
|
45
|
+
</li>
|
|
46
|
+
{%- endfor -%}
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
{%- endfor -%}
|
|
50
|
+
</div>
|
|
51
|
+
</ul>
|
|
52
|
+
</li>
|
|
53
|
+
{%- else -%}
|
|
54
|
+
{%- if dataToShow.megaMenu -%}
|
|
55
|
+
<li class="nav-item nav__item">
|
|
56
|
+
<a class="dropdown-toggle ml-lg-5" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
|
|
57
|
+
aria-haspopup="true" aria-expanded="false">
|
|
58
|
+
{{dataToShow.megaMenu.nav-link-name}}
|
|
59
|
+
</a>
|
|
60
|
+
<ul class="dropmenu dropdown-menu" aria-labelledby="navbarDropdown">
|
|
61
|
+
<div class="inner-dropdown">
|
|
62
|
+
{%- for item in dataToShow.megaMenu.dropdown -%}
|
|
63
|
+
<div class="catPad mb-4">
|
|
64
|
+
<li class="text-muted">{{item.categoryName}}</li>
|
|
65
|
+
<div> {%- for item in item.links -%}
|
|
66
|
+
<li>
|
|
67
|
+
<a href="{{item.url}}">
|
|
68
|
+
{%- if item.iconSrc -%}
|
|
69
|
+
<img class="d-inline mr-2" loading="lazy" style="height:20px;width:20px;" src="{{item.iconSrc}}"
|
|
70
|
+
{%- if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
71
|
+
{%- endif -%}
|
|
72
|
+
{{item.name}}</a>
|
|
73
|
+
</li>
|
|
74
|
+
{%- endfor -%}
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
{%- endfor -%}
|
|
78
|
+
</div>
|
|
79
|
+
</ul>
|
|
80
|
+
</li>
|
|
81
|
+
{%- endif -%}
|
|
82
|
+
{%- endif -%}
|
|
89
83
|
|
|
90
|
-
</header>
|
|
91
84
|
|
|
85
|
+
<ul class="navbar-nav mr-auto ">
|
|
86
|
+
{% for item in dataToShow.navItems %}
|
|
87
|
+
<li class="nav-item nav__item">
|
|
88
|
+
<a href="{{item.url}}">{{item.name}}</a>
|
|
89
|
+
</li>
|
|
90
|
+
{% endfor %}
|
|
91
|
+
</ul>
|
|
92
|
+
</div>
|
|
93
|
+
</div>
|
|
94
|
+
</nav>
|
|
92
95
|
|
|
96
|
+
</header>
|
data/_includes/postbox.html
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
|
3
3
|
<div class="card h-100">
|
|
4
4
|
<a href="{{ post.url }}">
|
|
5
|
-
<img src="{{ post.image }}" class="card-img-top"
|
|
5
|
+
<img src="{{ post.image }}" class="card-img-top" height="208px" width="100%" loading="lazy" alt="" {%- if
|
|
6
|
+
site.crossorigin -%} crossorigin {%- endif -%}>
|
|
6
7
|
</a>
|
|
7
8
|
<div class="card-body">
|
|
8
9
|
<a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
|
|
@@ -13,7 +14,8 @@
|
|
|
13
14
|
<div class="wrapfooter">
|
|
14
15
|
{% if post.author %}
|
|
15
16
|
<span class="meta-footer-thumb">
|
|
16
|
-
<img class="author-thumb" loading="lazy" src="{{image}}" alt="{{ authorName }}"
|
|
17
|
+
<img class="author-thumb" loading="lazy" src="{{image}}" alt="{{ authorName }}" {%- if
|
|
18
|
+
site.crossorigin -%} crossorigin {%- endif -%}>
|
|
17
19
|
</span>
|
|
18
20
|
{% endif %}
|
|
19
21
|
<span class="author-meta">
|
|
@@ -22,8 +24,8 @@
|
|
|
22
24
|
</span><br>
|
|
23
25
|
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
24
26
|
</span>
|
|
25
|
-
<span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
|
|
26
|
-
|
|
27
|
+
<span class="post-read-more"><a class="text-dark" href="{{ post.url }}" title="Read Story">Read
|
|
28
|
+
More</a></span>
|
|
27
29
|
</div>
|
|
28
30
|
</div>
|
|
29
31
|
</div>
|
data/_includes/script.html
CHANGED
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
{% assign scriptData = site.data.[page.folderName][lang][file] %}
|
|
2
2
|
{%- assign dataAtt = "data-folderName='$folderName' data-lang='$lang' data-fileName='$fileName' data-tool='$tool'" -%}
|
|
3
3
|
{%- assign $folderName = '$folderName' -%}
|
|
4
|
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
|
5
|
-
|
|
4
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" {%- if site.crossorigin
|
|
5
|
+
-%} "crossorigin" {%- endif -%}></script>
|
|
6
|
+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"
|
|
7
|
+
integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous" {%- if
|
|
8
|
+
site.crossorigin -%} crossorigin {%- endif -%}></script>
|
|
6
9
|
{{site.data.customcdns.customcdns.jsfiles}}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
{%- if scriptData.jsfilepaths -%}
|
|
11
|
+
{%- for path in scriptData.jsfilepaths -%}
|
|
12
|
+
<script src="{{path}}" data-folderName="{{page.folderName}}" data-lang="{{page.lang}}" data-fileName="{{page.fileName}}"
|
|
13
|
+
data-tool="{{page.tool}}" {%- if site.crossorigin -%} crossorigin {%- endif -%}></script>
|
|
14
|
+
{%- endfor -%}
|
|
15
|
+
{%- endif -%}
|
|
16
|
+
{%- if scriptData.jscdns -%}
|
|
17
|
+
{%- for item in scriptData.jscdns -%}
|
|
18
|
+
{{item | replace:"$folderName", page.folderName | replace: "$fileName", page.fileName | replace: "$lang", page.lang |
|
|
19
|
+
replace: "$tool", page.tool }}
|
|
20
|
+
{%- endfor -%}
|
|
21
|
+
{%- endif -%}
|
|
@@ -2,42 +2,43 @@
|
|
|
2
2
|
<div class="relatedPosts">
|
|
3
3
|
{%- if site.posts.size>0 -%}
|
|
4
4
|
<h2 class="related_post_heading">Recent Posts</h1>
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
</a>
|
|
16
|
-
<div class="card-body">
|
|
17
|
-
<a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
|
|
18
|
-
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
|
5
|
+
{%- endif -%}
|
|
6
|
+
<div class="row">
|
|
7
|
+
{% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
|
|
8
|
+
{% for post in posts limit: 6%}
|
|
9
|
+
{%- include /authors/authors.html -%}
|
|
10
|
+
<div class="col-lg-4 col-md-6 mb-4 card-group">
|
|
11
|
+
<div class="card h-100">
|
|
12
|
+
<a href="{{ post.url }}">
|
|
13
|
+
<img src="{{ post.image }}" class="card-img-top" height="215px" width="100%" loading="lazy"
|
|
14
|
+
alt="" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
19
15
|
</a>
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
</span
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
16
|
+
<div class="card-body">
|
|
17
|
+
<a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
|
|
18
|
+
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
|
19
|
+
</a>
|
|
20
|
+
</div>
|
|
21
|
+
<div class="card-footer bg-white">
|
|
22
|
+
<div class="wrapfooter">
|
|
23
|
+
{% if post.author %}
|
|
24
|
+
<span class="meta-footer-thumb">
|
|
25
|
+
<img class="author-thumb" loading="lazy" src="{{image}}" alt="{{ authorName }}" {%-
|
|
26
|
+
if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
27
|
+
</span>
|
|
28
|
+
{% endif %}
|
|
29
|
+
<span class="author-meta">
|
|
30
|
+
<span class="post-name">
|
|
31
|
+
<a target="_blank" href="/blog">{{authorName}}</a>
|
|
32
|
+
</span><br>
|
|
33
|
+
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
34
|
+
</span>
|
|
35
|
+
<span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
|
|
36
|
+
title="Read Story">Read More</a></span>
|
|
37
|
+
</div>
|
|
36
38
|
</div>
|
|
37
39
|
</div>
|
|
38
40
|
</div>
|
|
41
|
+
{% endfor %}
|
|
39
42
|
</div>
|
|
40
|
-
{% endfor %}
|
|
41
|
-
</div>
|
|
42
43
|
</div>
|
|
43
44
|
</div>
|