appscms-tools-theme 4.4.4 → 4.4.6
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/header/en/data.json +10 -1146
- data/_includes/appscms/customblog/pageRelatedPosts.html +43 -75
- data/_includes/appscms/faq/faq.html +1 -9
- data/_includes/appscms/featurePageAuthors/featurePageAuthors.html +1 -12
- data/_includes/appscms/featurehighlight/featurehighlight.html +30 -52
- data/_includes/appscms/footer/footer.html +13 -29
- data/_includes/appscms/footer/products.html +1 -8
- data/_includes/appscms/howto/howto.html +6 -8
- data/_includes/appscms/navbars/toolbar.html +10 -71
- data/_includes/appscms/searchbar/searchbar.html +4 -26
- data/_includes/author_bio.html +5 -5
- data/_includes/section/count.html +1 -5
- data/_includes/userTracking.html +8 -36
- data/_layouts/appscms-blog.html +55 -110
- data/_layouts/appscms-feature.html +13 -15
- data/_layouts/appscms-post.html +44 -44
- data/assets/css/appscms-blog.css +4 -4
- data/assets/css/appscms-theme.css +7 -6
- data/assets/images/close-button.svg +32 -0
- data/assets/images/search-icon.svg +3 -0
- data/assets/js/appscms-theme.js +1 -0
- metadata +4 -2
|
@@ -1,92 +1,60 @@
|
|
|
1
1
|
<section class="related-posts-section container">
|
|
2
2
|
<div class="mx-auto col-md-11 col-lg-11 col-sm-10 p-3 pb-3">
|
|
3
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
4
|
+
<div class="row">
|
|
5
|
+
<div class="col-md-9 mx-auto">
|
|
6
|
+
{%- endif -%}
|
|
7
|
+
<p class="pt-5 pb-0 related_post_heading mb-3">You might also like</p>
|
|
8
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
{%- endif -%}
|
|
12
|
+
{% assign file = page.fileName %}
|
|
13
|
+
{% assign lang = page.lang %}
|
|
14
|
+
{% assign folder = page.folderName %}
|
|
15
|
+
{% assign homeData = site.data[folder][lang][file] %}
|
|
16
|
+
{% assign blogData= homeData.posts %}
|
|
17
|
+
<div class="row allblogs appscms-blogs">
|
|
3
18
|
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<div class="col-md-9 mx-auto">
|
|
19
|
+
<div class="col-md-9 mx-auto">
|
|
20
|
+
<div class="row">
|
|
7
21
|
{%- endif -%}
|
|
8
|
-
|
|
9
|
-
{%-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
{% assign file = page.fileName %}
|
|
15
|
-
{% assign lang = page.lang %}
|
|
16
|
-
{% assign folder = page.folderName %}
|
|
17
|
-
{% assign homeData = site.data[folder][lang][file] %}
|
|
18
|
-
{% assign blogData= homeData.posts %}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
<div class="row allblogs appscms-blogs">
|
|
24
|
-
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
<div class="col-md-9 mx-auto">
|
|
28
|
-
<div class="row">
|
|
29
|
-
{%- endif -%}
|
|
30
|
-
|
|
31
|
-
{% for post in blogData %}
|
|
32
|
-
{%- include authors/authors.html-%}
|
|
33
|
-
|
|
34
|
-
<div class="
|
|
35
|
-
{%- if site.monumetricId and page.url != '/' and page.lang == " en" -%} col-md-6 mb-4 card-group {%-
|
|
36
|
-
else -%} col-lg-4 col-md-6 mb-4 card-group {%- endif -%} ">
|
|
37
|
-
<div class="card h-100 appscms-blog-cards">
|
|
38
|
-
<a href="/blog/{{ post.url }}">
|
|
39
|
-
<div class="extrapaddingforimg">
|
|
40
|
-
|
|
22
|
+
{% for post in blogData %}
|
|
23
|
+
{%- include authors/authors.html-%}
|
|
24
|
+
<div class="{%- if site.monumetricId and page.url != '/' and page.lang == " en" -%} col-md-6 mb-4 card-group {%-
|
|
25
|
+
else -%} col-lg-4 col-md-6 mb-4 card-group {%- endif -%} ">
|
|
26
|
+
<div class="card h-100 appscms-blog-cards">
|
|
27
|
+
<a class="extrapaddingforimg" href="/blog/{{ post.url }}">
|
|
41
28
|
<img src="{{ post.image }}" loading="lazy" class="card-img-top" height="250"
|
|
42
29
|
width="100%" alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%- endif
|
|
43
30
|
-%}>
|
|
44
|
-
|
|
31
|
+
</a>
|
|
32
|
+
<div class="card-body">
|
|
33
|
+
<a class="text-decoration-none text-dark" href="/blog/{{ post.url }}" class="anchor_link">
|
|
34
|
+
<h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
|
|
45
35
|
</a>
|
|
46
|
-
<div class="
|
|
47
|
-
|
|
48
|
-
<
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
{%
|
|
58
|
-
|
|
59
|
-
<
|
|
60
|
-
|
|
61
|
-
<a target="_blank" href="/blog">{{authorName}}</a>
|
|
62
|
-
|
|
63
|
-
{% assign path_parts = post.path | split: '/' %}
|
|
64
|
-
{% assign date_parts = path_parts[1] | split: '-' %}
|
|
65
|
-
{% assign year = date_parts[0] %}
|
|
66
|
-
{% assign month = date_parts[1] %}
|
|
67
|
-
{% assign day = date_parts[2] | split: '-' | first %}
|
|
68
|
-
|
|
69
|
-
<span class="post-date">{{ day }}-{{ month }}-{{ year }}</span>
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
</span>
|
|
73
|
-
|
|
36
|
+
<div class="wrapfooter">
|
|
37
|
+
{% if post.author %}
|
|
38
|
+
<img class="author-thumb" loading="lazy" src="{{ image }}" alt="{{ authorName }}"
|
|
39
|
+
{%- if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
40
|
+
{% endif %}
|
|
41
|
+
|
|
42
|
+
<div class="author-meta">
|
|
43
|
+
<a class="post-name" target="_blank" href="/blog">{{authorName}}</a>
|
|
44
|
+
{% assign path_parts = post.path | split: '/' %}
|
|
45
|
+
{% assign date_parts = path_parts[1] | split: '-' %}
|
|
46
|
+
{% assign year = date_parts[0] %}
|
|
47
|
+
{% assign month = date_parts[1] %}
|
|
48
|
+
{% assign day = date_parts[2] | split: '-' | first %}
|
|
49
|
+
<div class="post-date">{{ day }}-{{ month }}-{{ year }}</div>
|
|
74
50
|
</div>
|
|
51
|
+
|
|
75
52
|
</div>
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
53
|
</div>
|
|
80
54
|
</div>
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
55
|
+
</div>
|
|
85
56
|
{% endfor %}
|
|
86
|
-
|
|
87
57
|
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
88
|
-
|
|
89
|
-
|
|
90
58
|
</div>
|
|
91
59
|
</div>
|
|
92
60
|
{%- endif -%}
|
|
@@ -6,8 +6,6 @@ page.lang -%} {%- assign showFaqs = false -%} {%- break -%} {%- else -%} {%-
|
|
|
6
6
|
assign showFaqs = true -%} {%- endif -%} {%- endfor -%} {%- if showFaqs == true
|
|
7
7
|
-%} {%- if pageData.FAQ.size>0 -%}
|
|
8
8
|
<div class="container heading mt-5">
|
|
9
|
-
<div class="row">
|
|
10
|
-
<div class="col-11">
|
|
11
9
|
<div class="d-flex align-items-center justify-content-center">
|
|
12
10
|
<hr
|
|
13
11
|
class="flex-grow-1 mx-4 mb-0"
|
|
@@ -21,13 +19,8 @@ assign showFaqs = true -%} {%- endif -%} {%- endfor -%} {%- if showFaqs == true
|
|
|
21
19
|
style="height: 2px; background-color: #000"
|
|
22
20
|
/>
|
|
23
21
|
</div>
|
|
24
|
-
</div>
|
|
25
|
-
</div>
|
|
26
22
|
</div>
|
|
27
|
-
<div class="container mx-auto appscms-faq-section ">
|
|
28
|
-
<div class="row">
|
|
29
|
-
<div class="col-md-11 mx-auto my-4">
|
|
30
|
-
<div class="faq-section">
|
|
23
|
+
<div class="container mx-auto appscms-faq-section col-md-9 p-3 pb-3 col-12">
|
|
31
24
|
{% for data in pageData.FAQ %}
|
|
32
25
|
<div class="faq-item">
|
|
33
26
|
<h3 class="faq-question">
|
|
@@ -38,7 +31,6 @@ assign showFaqs = true -%} {%- endif -%} {%- endfor -%} {%- if showFaqs == true
|
|
|
38
31
|
</p>
|
|
39
32
|
</div>
|
|
40
33
|
{% endfor %}
|
|
41
|
-
</div>
|
|
42
34
|
</div>
|
|
43
35
|
</div>
|
|
44
36
|
</div>
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
About The Author
|
|
10
10
|
</h4>
|
|
11
11
|
{%- endif -%}
|
|
12
|
-
<div class="row">
|
|
13
12
|
{%- if featureData.author -%} {%- include authors/authors.html -%} {%-
|
|
14
13
|
assign featureAuthor = featureData.author | split: " " -%} {%- assign
|
|
15
14
|
author = featureAuthor.first | downcase -%} {%- assign collection =
|
|
@@ -42,16 +41,7 @@
|
|
|
42
41
|
-%}
|
|
43
42
|
/>
|
|
44
43
|
</a>
|
|
45
|
-
|
|
46
|
-
<p class="mb-0 authorName text-capitalize">
|
|
47
|
-
<a
|
|
48
|
-
target="_blank"
|
|
49
|
-
href="/authors/{{featureAuthorName | downcase | replace: ' ','-' }}"
|
|
50
|
-
{{featureAuthorName}}
|
|
51
|
-
</a>
|
|
52
|
-
</p>
|
|
53
|
-
<p class="author_bio mb-0">{{featureAuthorBio}}</p>
|
|
54
|
-
</div>
|
|
44
|
+
<p class="author-meta author_bio mt-3 mb-0">{{featureAuthorBio}}</p>
|
|
55
45
|
</div>
|
|
56
46
|
{%- endif %} {%- assign contributors = featureData.contributors |
|
|
57
47
|
uniq: 'name' -%} {%- if contributors.size > 0 -%}
|
|
@@ -89,7 +79,6 @@
|
|
|
89
79
|
endif -%} {%- endfor -%}
|
|
90
80
|
</div>
|
|
91
81
|
{%- endif -%}
|
|
92
|
-
</div>
|
|
93
82
|
</div>
|
|
94
83
|
</div>
|
|
95
84
|
</div>
|
|
@@ -1,58 +1,36 @@
|
|
|
1
1
|
<div class="container mt-5">
|
|
2
|
-
<div class="
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
<div class="
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
site.crossorigin
|
|
25
|
-
-%}
|
|
26
|
-
crossorigin{{space}}
|
|
27
|
-
{{space}}
|
|
28
|
-
{%-
|
|
29
|
-
endif
|
|
30
|
-
-%}
|
|
31
|
-
style="object-fit: cover; height: 5rem; width: 5rem"
|
|
32
|
-
/>
|
|
33
|
-
<div class="card-body p-0">
|
|
34
|
-
{%- if totalHeaderCount > site.count_of_words_in_headings -%}
|
|
35
|
-
<h2 class="card-title appscms-feature-title">
|
|
36
|
-
{{data.header | replace: "$variable", page.value}}
|
|
37
|
-
</h2>
|
|
38
|
-
{%- else -%}
|
|
39
|
-
<div class="card-title appscms-feature-title">
|
|
40
|
-
{{data.header | replace: "$variable", page.value}}
|
|
41
|
-
</div>
|
|
42
|
-
{%- endif -%}
|
|
43
|
-
<div class="feature-card-desc">
|
|
44
|
-
<p class="card-text m-0 appscms-feature-description">
|
|
45
|
-
{{data.content | replace: "$variable", page.value}}
|
|
46
|
-
</p>
|
|
47
|
-
</div>
|
|
48
|
-
</div>
|
|
49
|
-
</div>
|
|
2
|
+
<div class="row feature-description-boxes pt-5">
|
|
3
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%}
|
|
4
|
+
<div class="col-md-9 mx-auto">
|
|
5
|
+
<div class="row">
|
|
6
|
+
{%- endif -%} {% assign totalHeaderCount = 0 %} {% for data in
|
|
7
|
+
pageData.TEXTUAL_CONTENT %} {% assign words = data.header | split: " "
|
|
8
|
+
%} {% assign word_count = words | size %} {% assign totalHeaderCount =
|
|
9
|
+
totalHeaderCount | plus: word_count %} {% endfor %} {% for data in
|
|
10
|
+
pageData.TEXTUAL_CONTENT %}
|
|
11
|
+
<div
|
|
12
|
+
class="{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%} col-md-6 my-4 {%- else -%} col-md-4 my-4 card h-100 border-0 bg-transparent{%- endif -%}">
|
|
13
|
+
{%- assign space = ' ' -%}
|
|
14
|
+
<img src="{{data.logoUrl}}" loading="lazy" class="card-img-top float-left mr-3 appscms-feature-image"
|
|
15
|
+
alt="{{data.header}}" {%- if site.crossorigin -%} crossorigin{{space}} {{space}} {%- endif -%}
|
|
16
|
+
style="object-fit: cover; height: 5rem; width: 5rem" />
|
|
17
|
+
{%- if totalHeaderCount > site.count_of_words_in_headings -%}
|
|
18
|
+
<h2 class="card-title appscms-feature-title">
|
|
19
|
+
{{data.header | replace: "$variable", page.value}}
|
|
20
|
+
</h2>
|
|
21
|
+
{%- else -%}
|
|
22
|
+
<div class="card-title appscms-feature-title">
|
|
23
|
+
{{data.header | replace: "$variable", page.value}}
|
|
50
24
|
</div>
|
|
51
|
-
{
|
|
52
|
-
|
|
25
|
+
{%- endif -%}
|
|
26
|
+
<p class="card-text m-0 appscms-feature-description">
|
|
27
|
+
{{data.content | replace: "$variable", page.value}}
|
|
28
|
+
</p>
|
|
53
29
|
</div>
|
|
30
|
+
{% endfor %} {%- if site.monumetricId and page.url != '/' and
|
|
31
|
+
page.lang == 'en' -%}
|
|
54
32
|
</div>
|
|
55
|
-
{%- endif -%}
|
|
56
33
|
</div>
|
|
34
|
+
{%- endif -%}
|
|
57
35
|
</div>
|
|
58
|
-
</div>
|
|
36
|
+
</div>
|
|
@@ -9,7 +9,6 @@ languages/languages.html -%} {% assign dataFile= site.data[folder][lang][file]
|
|
|
9
9
|
<div class="col-md-5 mb-3">
|
|
10
10
|
{%- if dataToShow.footerBrandLogoSvg -%}
|
|
11
11
|
{{dataToShow.footerBrandLogoSvg}} {%- else -%}
|
|
12
|
-
<div class="footer-logo-cont">
|
|
13
12
|
<img
|
|
14
13
|
loading="lazy"
|
|
15
14
|
src="{{dataToShow.logo}}"
|
|
@@ -27,49 +26,38 @@ languages/languages.html -%} {% assign dataFile= site.data[folder][lang][file]
|
|
|
27
26
|
-%}
|
|
28
27
|
/>
|
|
29
28
|
<div class="footer-title">{{dataToShow.heading}}</div>
|
|
30
|
-
</div>
|
|
31
29
|
{%- endif -%}
|
|
32
30
|
</div>
|
|
33
31
|
<div class="col-md-7">
|
|
34
32
|
<div class="row">
|
|
35
33
|
<div class="col-md-4 mb-3">
|
|
36
|
-
<
|
|
37
|
-
<li class="appscms-footer-category">
|
|
38
|
-
{{dataToShow.companytitle | default: 'Company' }}
|
|
39
|
-
</li>
|
|
34
|
+
<div class="appscms-footer-category">{{dataToShow.companytitle | default: 'Company' }}</div>
|
|
40
35
|
{% for data in dataToShow.company %}
|
|
41
|
-
|
|
42
|
-
<a href="{{data.url}}">{{data.name}}</a>
|
|
43
|
-
</li>
|
|
36
|
+
<a class="appscms-footer-link" href="{{data.url}}">{{data.name}}</a>
|
|
44
37
|
{% endfor %}
|
|
45
|
-
</ul>
|
|
46
38
|
</div>
|
|
39
|
+
|
|
47
40
|
<div class="col-md-4 mb-3">
|
|
48
|
-
|
|
49
|
-
<
|
|
41
|
+
|
|
42
|
+
<div class="appscms-footer-category">
|
|
50
43
|
{{dataToShow.legaltitle | default: 'Legal' }}
|
|
51
|
-
</
|
|
44
|
+
</div>
|
|
52
45
|
{% for data in dataToShow.legal %}
|
|
53
|
-
|
|
54
|
-
<a target="_blank" rel="noopener noreferrer" href="{{data.url}}"
|
|
46
|
+
<a class="appscms-footer-link" target="_blank" rel="noopener noreferrer" href="{{data.url}}"
|
|
55
47
|
>{{data.name}}</a
|
|
56
48
|
>
|
|
57
|
-
</li>
|
|
58
49
|
{% endfor %}
|
|
59
|
-
|
|
50
|
+
|
|
60
51
|
</div>
|
|
61
52
|
|
|
62
53
|
<div class="col-md-4 mb-3">
|
|
63
|
-
|
|
64
|
-
<
|
|
54
|
+
|
|
55
|
+
<div class="appscms-footer-category">
|
|
65
56
|
{{dataToShow.networksitestitle | default: 'Network sites'}}
|
|
66
|
-
</
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
<a href="{{data.url}}">{{data.name}}</a>
|
|
70
|
-
</li>
|
|
57
|
+
</div>
|
|
58
|
+
{% for data in networksitesData.networkSites %}
|
|
59
|
+
<a class="appscms-footer-link" href="{{data.url}}">{{data.name}}</a>
|
|
71
60
|
{%- endfor -%}
|
|
72
|
-
</ul>
|
|
73
61
|
</div>
|
|
74
62
|
</div>
|
|
75
63
|
</div>
|
|
@@ -81,8 +69,6 @@ languages/languages.html -%} {% assign dataFile= site.data[folder][lang][file]
|
|
|
81
69
|
>{{site.name}}</a
|
|
82
70
|
>
|
|
83
71
|
</div>
|
|
84
|
-
<div class="privacy-footer">
|
|
85
|
-
<div class="privacy-links">
|
|
86
72
|
{%- if site.internationalization -%}
|
|
87
73
|
<div class="privacy-links-item">
|
|
88
74
|
<button
|
|
@@ -322,8 +308,6 @@ languages/languages.html -%} {% assign dataFile= site.data[folder][lang][file]
|
|
|
322
308
|
</div>
|
|
323
309
|
</div>
|
|
324
310
|
{%- endif -%} {%- endif -%}
|
|
325
|
-
</div>
|
|
326
|
-
</div>
|
|
327
311
|
</div>
|
|
328
312
|
</div>
|
|
329
313
|
</div>
|
|
@@ -4,15 +4,8 @@
|
|
|
4
4
|
<div class="row w-100">
|
|
5
5
|
<div class="col-md-11 mx-auto py-4">
|
|
6
6
|
<div class="row">
|
|
7
|
-
|
|
8
7
|
{%- for item in footerData.product -%}
|
|
9
|
-
|
|
10
|
-
<ul class="p-0 m-0">
|
|
11
|
-
<li>
|
|
12
|
-
<a class="footer-product-link" href="{{item.url}}">{{item.name}}</a>
|
|
13
|
-
</li>
|
|
14
|
-
</ul>
|
|
15
|
-
</div>
|
|
8
|
+
<a class="col-md-3 footer-product-link" href="{{item.url}}">{{item.name}}</a>
|
|
16
9
|
{% endfor %}
|
|
17
10
|
</div>
|
|
18
11
|
</div>
|
|
@@ -38,18 +38,16 @@
|
|
|
38
38
|
</div>
|
|
39
39
|
{%- endif -%}
|
|
40
40
|
</div>
|
|
41
|
-
<div class="col-md-6 appscms-howto-steps">
|
|
41
|
+
<div class="col-md-6 appscms-howto-steps p-3">
|
|
42
42
|
<h2 class="mb-4 appscms-howto-heading">
|
|
43
43
|
{{pageData.HOW_TO_CONTENT.heading | replace: "$variable",
|
|
44
44
|
page.value}}
|
|
45
45
|
</h2>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
{% endfor %}
|
|
52
|
-
</ol>
|
|
46
|
+
{% for data in pageData.HOW_TO_CONTENT.steps %}
|
|
47
|
+
<div id="step{{forloop.index}}" class="how-to-list-item">
|
|
48
|
+
{{forloop.index}} . {{data | replace: "$variable", page.value}}
|
|
49
|
+
</div>
|
|
50
|
+
{% endfor %}
|
|
53
51
|
</div>
|
|
54
52
|
{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%}
|
|
55
53
|
</div>
|
|
@@ -2,64 +2,19 @@
|
|
|
2
2
|
<div class="appscms-toolbar">
|
|
3
3
|
<div class="row">
|
|
4
4
|
<div class="col-11 mx-auto">
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
<!-- <div class="scroll-left">
|
|
8
|
-
<svg width="23px" height="23px" viewBox="-4.5 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000">
|
|
9
|
-
|
|
10
|
-
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
|
11
|
-
|
|
12
|
-
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
|
13
|
-
|
|
14
|
-
<g id="SVGRepo_iconCarrier"> <title>arrow_left [#ffffff]</title> <desc>Created with Sketch.</desc> <defs> </defs> <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <g id="Dribbble-Light-Preview" transform="translate(-345.000000, -6679.000000)" fill="#ffffff"> <g id="icons" transform="translate(56.000000, 160.000000)"> <path d="M299.633777,6519.29231 L299.633777,6519.29231 C299.228878,6518.90256 298.573377,6518.90256 298.169513,6519.29231 L289.606572,6527.55587 C288.797809,6528.33636 288.797809,6529.60253 289.606572,6530.38301 L298.231646,6538.70754 C298.632403,6539.09329 299.27962,6539.09828 299.685554,6538.71753 L299.685554,6538.71753 C300.100809,6538.32879 300.104951,6537.68821 299.696945,6537.29347 L291.802968,6529.67648 C291.398069,6529.28574 291.398069,6528.65315 291.802968,6528.26241 L299.633777,6520.70538 C300.038676,6520.31563 300.038676,6519.68305 299.633777,6519.29231" id="arrow_left-[#ffffff]"> </path> </g> </g> </g> </g>
|
|
15
|
-
|
|
16
|
-
</svg>
|
|
17
|
-
</div> -->
|
|
5
|
+
<div class="appscms-toolbar-list">
|
|
18
6
|
<div id="close-nav-ham" data-open="1" class="close-nav-ham">
|
|
19
|
-
<svg
|
|
20
|
-
|
|
21
|
-
width="1em"
|
|
22
|
-
style="font-size: 25px"
|
|
23
|
-
viewBox="0 0 24 24"
|
|
24
|
-
fill="none"
|
|
25
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
26
|
-
stroke="#ffffff"
|
|
27
|
-
>
|
|
28
|
-
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
|
|
29
|
-
<g
|
|
30
|
-
id="SVGRepo_tracerCarrier"
|
|
31
|
-
stroke-linecap="round"
|
|
32
|
-
stroke-linejoin="round"
|
|
33
|
-
></g>
|
|
34
|
-
<g id="SVGRepo_iconCarrier">
|
|
35
|
-
<g clip-path="url(#clip0_429_11083)">
|
|
36
|
-
<path
|
|
37
|
-
d="M7 7.00006L17 17.0001M7 17.0001L17 7.00006"
|
|
38
|
-
stroke="#ffffff"
|
|
39
|
-
stroke-width="2.5"
|
|
40
|
-
stroke-linecap="round"
|
|
41
|
-
stroke-linejoin="round"
|
|
42
|
-
></path>
|
|
43
|
-
</g>
|
|
44
|
-
<defs>
|
|
45
|
-
<clipPath id="clip0_429_11083">
|
|
46
|
-
<rect width="24" height="24" fill="white"></rect>
|
|
47
|
-
</clipPath>
|
|
48
|
-
</defs>
|
|
49
|
-
</g>
|
|
50
|
-
</svg>
|
|
7
|
+
<img class="mt-3" style="cursor: pointer;" height="30px" width="30px" src="/assets/images/close-button.svg"
|
|
8
|
+
alt="close-button">
|
|
51
9
|
</div>
|
|
52
10
|
|
|
53
11
|
{%- for item in siteData.megaMenu.dropdown -%}
|
|
12
|
+
|
|
54
13
|
<li class="appscms-toolbar-list-item">
|
|
55
|
-
<span
|
|
56
|
-
class="appscms-toolbar-list-item-span d-flex justify-content-between"
|
|
57
|
-
>
|
|
14
|
+
<span class="appscms-toolbar-list-item-span d-flex justify-content-between">
|
|
58
15
|
{{item.categoryName}}
|
|
59
|
-
|
|
60
16
|
</span>
|
|
61
|
-
|
|
62
|
-
<ul class="list-item-dropdown">
|
|
17
|
+
<div class="list-item-dropdown">
|
|
63
18
|
<h4 class="list-item-dropdown-heading">
|
|
64
19
|
{{siteData.megaMenu.nav-link-name}}
|
|
65
20
|
</h4>
|
|
@@ -73,34 +28,18 @@
|
|
|
73
28
|
<div class="col-md-6 col-lg-4">
|
|
74
29
|
{%- endif -%}
|
|
75
30
|
{%- endif -%} {% if count == 6 %}
|
|
76
|
-
<li>
|
|
77
31
|
<a class="toolbar-link" href="{{i.url}}">{{i.name}}</a>
|
|
78
|
-
</li>
|
|
79
32
|
</div>
|
|
80
33
|
{% assign count = 0 %} {%- else -%}
|
|
81
|
-
<
|
|
82
|
-
<a class="toolbar-link" href="{{i.url}}">{{i.name}}</a>
|
|
83
|
-
</li>
|
|
34
|
+
<a class="toolbar-link" href="{{i.url}}">{{i.name}}</a>
|
|
84
35
|
{% endif %} {% endfor %}
|
|
85
36
|
</div>
|
|
86
|
-
</
|
|
37
|
+
</div>
|
|
87
38
|
</li>
|
|
88
39
|
{%- endfor -%}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
<!-- <div class="scroll-right">
|
|
92
|
-
<svg width="23px" height="23px" viewBox="-4.5 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000">
|
|
93
|
-
|
|
94
|
-
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
|
95
|
-
|
|
96
|
-
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
|
97
|
-
|
|
98
|
-
<g id="SVGRepo_iconCarrier"> <title>arrow_right [#ffffff]</title> <desc>Created with Sketch.</desc> <defs> </defs> <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <g id="Dribbble-Light-Preview" transform="translate(-305.000000, -6679.000000)" fill="#ffffff"> <g id="icons" transform="translate(56.000000, 160.000000)"> <path d="M249.365851,6538.70769 L249.365851,6538.70769 C249.770764,6539.09744 250.426289,6539.09744 250.830166,6538.70769 L259.393407,6530.44413 C260.202198,6529.66364 260.202198,6528.39747 259.393407,6527.61699 L250.768031,6519.29246 C250.367261,6518.90671 249.720021,6518.90172 249.314072,6519.28247 L249.314072,6519.28247 C248.899839,6519.67121 248.894661,6520.31179 249.302681,6520.70653 L257.196934,6528.32352 C257.601847,6528.71426 257.601847,6529.34685 257.196934,6529.73759 L249.365851,6537.29462 C248.960938,6537.68437 248.960938,6538.31795 249.365851,6538.70769" id="arrow_right-[#ffffff]"> </path> </g> </g> </g> </g>
|
|
99
40
|
|
|
100
|
-
</
|
|
101
|
-
</div> -->
|
|
102
|
-
</ul>
|
|
41
|
+
</div>
|
|
103
42
|
</div>
|
|
104
43
|
</div>
|
|
105
44
|
</div>
|
|
106
|
-
{%- endif -%}
|
|
45
|
+
{%- endif -%}
|
|
@@ -3,35 +3,13 @@
|
|
|
3
3
|
<div class="col-lg-6 col-md-8 col-10">
|
|
4
4
|
<form class="form-inline">
|
|
5
5
|
<div class="input-group w-100 shadow" id="appscms-searchbar">
|
|
6
|
-
<input
|
|
7
|
-
|
|
8
|
-
id="search-features"
|
|
9
|
-
class="form-control rounded-pill border-0 px-4"
|
|
10
|
-
id="searchbar-placeholder"
|
|
11
|
-
placeholder="Search the tool you are looking for"
|
|
12
|
-
style="width: 50%"
|
|
13
|
-
/>
|
|
6
|
+
<input type="text" id="search-features" class="form-control rounded-pill border-0 px-4"
|
|
7
|
+
id="searchbar-placeholder" placeholder="Search the tool you are looking for" style="width: 50%" />
|
|
14
8
|
<div class="btn btn-link btn-search">
|
|
15
|
-
<svg
|
|
16
|
-
height="22px"
|
|
17
|
-
width="22px"
|
|
18
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
19
|
-
width="800px"
|
|
20
|
-
height="800px"
|
|
21
|
-
viewBox="0 0 24 24"
|
|
22
|
-
fill="none"
|
|
23
|
-
>
|
|
24
|
-
<path
|
|
25
|
-
fill-rule="evenodd"
|
|
26
|
-
clip-rule="evenodd"
|
|
27
|
-
d="M4 11C4 7.13401 7.13401 4 11 4C14.866 4 18 7.13401 18 11C18 14.866 14.866 18 11 18C7.13401 18 4 14.866 4 11ZM11 2C6.02944 2 2 6.02944 2 11C2 15.9706 6.02944 20 11 20C13.125 20 15.078 19.2635 16.6177 18.0319L20.2929 21.7071C20.6834 22.0976 21.3166 22.0976 21.7071 21.7071C22.0976 21.3166 22.0976 20.6834 21.7071 20.2929L18.0319 16.6177C19.2635 15.078 20 13.125 20 11C20 6.02944 15.9706 2 11 2Z"
|
|
28
|
-
fill="#000000"
|
|
29
|
-
/>
|
|
30
|
-
</svg>
|
|
31
|
-
|
|
9
|
+
<img width="22px" height="22px" src="/assets/images/search-icon.svg" alt="search-icon">
|
|
32
10
|
</div>
|
|
33
11
|
</div>
|
|
34
12
|
</form>
|
|
35
13
|
</div>
|
|
36
14
|
</div>
|
|
37
|
-
</div>
|
|
15
|
+
</div>
|
data/_includes/author_bio.html
CHANGED
|
@@ -21,21 +21,21 @@
|
|
|
21
21
|
id="author_img" {%- if site.crossorigin -%} crossorigin {%- endif -%} />
|
|
22
22
|
</a>
|
|
23
23
|
|
|
24
|
-
<
|
|
24
|
+
<div class="author-meta">
|
|
25
25
|
{%- if twitter != 'N/A' -%}
|
|
26
26
|
<a class="postName" target="_blank" href="{{twitter}}">{{authorName}}</a>
|
|
27
27
|
{%- else -%}
|
|
28
|
-
<p class="mb-0 postName">
|
|
29
|
-
<a target="_blank" href="/authors/{{authorName | downcase | replace: ' ' , '-'' }}">
|
|
28
|
+
<!-- <p class="mb-0 postName"> -->
|
|
29
|
+
<a class="postName" target="_blank" href="/authors/{{authorName | downcase | replace: ' ' , '-'' }}">
|
|
30
30
|
{{authorName}}
|
|
31
31
|
</a>
|
|
32
|
-
</p>
|
|
32
|
+
<!-- </p> -->
|
|
33
33
|
{%- endif -%}
|
|
34
34
|
{%- if twitter != 'N/A' -%}
|
|
35
35
|
<a class="btn_follow text-decoration-none" target="_blank" href="{{twitter}}">Follow</a>
|
|
36
36
|
{%- endif -%}
|
|
37
37
|
<p class="author_bio mb-0">{{bio}}</p>
|
|
38
|
-
</
|
|
38
|
+
</div>
|
|
39
39
|
</div>
|
|
40
40
|
|
|
41
41
|
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
<div class="explore">
|
|
2
2
|
<div class="container">
|
|
3
3
|
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
4
|
-
|
|
5
4
|
<div class="row">
|
|
6
5
|
<div class="col-md-9 mx-auto">
|
|
7
6
|
{%- endif -%}
|
|
8
|
-
<h2>Explore
|
|
9
|
-
|
|
10
|
-
<ul class="mt-3">
|
|
7
|
+
<h2>Explore →</h2>
|
|
11
8
|
{% assign categories_list = site.categories %}
|
|
12
9
|
{% if categories_list.first[0] == null %}
|
|
13
10
|
{% for category in categories_list %}
|
|
@@ -26,7 +23,6 @@
|
|
|
26
23
|
{% endfor %}
|
|
27
24
|
{% endif %}
|
|
28
25
|
{% assign categories_list = nil %}
|
|
29
|
-
</ul>
|
|
30
26
|
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
31
27
|
|
|
32
28
|
</div>
|