appscms-tools-theme 3.7.5 → 3.7.7
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/feature/en/3_shop_posters.json +8 -8
- data/_data/feature/en/allele-frequency.json +1 -1
- data/_data/feature/en/batch-conversion.json +1 -1
- data/_data/feature/en/compress-pdf.json +1 -1
- data/_data/feature/en/devtools.json +1 -1
- data/_data/feature/en/face-detection.json +1 -1
- data/_data/feature/en/split-pdf.json +1 -1
- data/_data/feature/en/theframe.json +1 -1
- data/_data/feature/hi/compress-pdf.json +1 -1
- data/_data/feature/tr/compress-pdf.json +1 -1
- data/_data/header/en/data.json +2 -2
- data/_data/home/en/en.json +1 -1
- data/_data/home/en/photoeffects.json +1 -1
- data/_data/home-1/en/en.json +1 -1
- data/_includes/.DS_Store +0 -0
- data/_includes/appscms/category-tabs/category-tabs.html +17 -0
- data/_includes/appscms/extras/ratings.html +33 -0
- data/_includes/appscms/extras/recent-posts.html +1 -0
- data/_includes/appscms/extras/traffic-count.html +21 -0
- data/_includes/appscms/faq/faq.html +46 -0
- data/_includes/appscms/featurehighlight/featurehighlight.html +56 -0
- data/_includes/appscms/footer/footer.html +283 -0
- data/_includes/appscms/footer/products.html +40 -0
- data/_includes/appscms/head/head.html +611 -0
- data/_includes/appscms/headings/headings.html +19 -0
- data/_includes/appscms/home/feature-boxes.html +21 -0
- data/_includes/appscms/howto/howto.html +74 -0
- data/_includes/appscms/navbars/navbar.html +50 -0
- data/_includes/appscms/navbars/toolbar.html +49 -0
- data/_includes/appscms/recent-posts/recent-posts.html +90 -0
- data/_includes/appscms/scripts/script.html +135 -0
- data/_includes/appscms/searchbar/searchbar.html +22 -0
- data/_includes/appscms/uploadbutton/uploadbutton.html +44 -0
- data/_layouts/appscms-blog.html +31 -0
- data/_layouts/appscms-feature.html +32 -0
- data/_layouts/appscms-home.html +27 -0
- data/_layouts/feature.html +7 -6
- data/assets/.DS_Store +0 -0
- data/assets/css/appscms-feature.css +362 -0
- data/assets/css/appscms-home.css +0 -0
- data/assets/css/appscms-theme.css +780 -0
- data/assets/document.png +0 -0
- data/assets/dropbox.png +0 -0
- data/assets/gdrive.png +0 -0
- data/assets/js/appscms-theme.js +62 -0
- metadata +31 -2
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
<div
|
|
2
|
+
class="container mx-auto appscms-how-to-section col-md-9 p-3 pb-3 mt-5 col-12"
|
|
3
|
+
>
|
|
4
|
+
<div class="row align-items-center py-3">
|
|
5
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%}
|
|
6
|
+
<div class="col-md-9 mx-auto">
|
|
7
|
+
<div class="row">
|
|
8
|
+
{%- endif -%}
|
|
9
|
+
<div class="col-md-6 appscms-howto-image">
|
|
10
|
+
{%- if pageData.HOW_TO_CONTENT.YoutubeVideoUrl.size > 0 -%}
|
|
11
|
+
<div class="how-to-video-wrapper">
|
|
12
|
+
{% assign video_url = pageData.HOW_TO_CONTENT.YoutubeVideoUrl %} {%
|
|
13
|
+
assign params = video_url | split: "?" | last | split: "&" %} {% for
|
|
14
|
+
param in params %} {% if param contains "v=" %} {% assign video_id =
|
|
15
|
+
param | split: "=" | last %} {% endif %} {% endfor %} {%- if
|
|
16
|
+
site.monumetricId -%}
|
|
17
|
+
<iframe
|
|
18
|
+
class="youtubeVideoPlayer"
|
|
19
|
+
width="400"
|
|
20
|
+
height="315"
|
|
21
|
+
src="https://www.youtube.com/embed/{{video_id}}?autoplay=1&mute=1"
|
|
22
|
+
allowfullscreen
|
|
23
|
+
>
|
|
24
|
+
</iframe>
|
|
25
|
+
{%- else -%}
|
|
26
|
+
<iframe
|
|
27
|
+
class="youtubeVideoPlayer"
|
|
28
|
+
width="500"
|
|
29
|
+
height="315"
|
|
30
|
+
src="https://www.youtube.com/embed/{{video_id}}?autoplay=1&mute=1"
|
|
31
|
+
allowfullscreen
|
|
32
|
+
>
|
|
33
|
+
</iframe>
|
|
34
|
+
{%- endif -%}
|
|
35
|
+
</div>
|
|
36
|
+
{%- else -%}
|
|
37
|
+
<div class="how-to-img-wrapper">
|
|
38
|
+
<img
|
|
39
|
+
src="{{pageData.HOW_TO_CONTENT.logoImageUrl}}"
|
|
40
|
+
loading="lazy"
|
|
41
|
+
alt="{{pageData.HOW_TO_CONTENT.logoImageAlt | default: 'how to image' }}"
|
|
42
|
+
{%-
|
|
43
|
+
if
|
|
44
|
+
site.crossorigin
|
|
45
|
+
-%}
|
|
46
|
+
crossorigin
|
|
47
|
+
{%-
|
|
48
|
+
endif
|
|
49
|
+
-%}class="img-fluid align-self-end"
|
|
50
|
+
alt="Your Image"
|
|
51
|
+
/>
|
|
52
|
+
</div>
|
|
53
|
+
{%- endif -%}
|
|
54
|
+
</div>
|
|
55
|
+
<div class="col-md-6 appscms-howto-steps">
|
|
56
|
+
<h2 class="mb-4 appscms-howto-heading">
|
|
57
|
+
{{pageData.HOW_TO_CONTENT.heading | replace: "$variable",
|
|
58
|
+
page.value}}
|
|
59
|
+
</h2>
|
|
60
|
+
<ol class="pl-3">
|
|
61
|
+
{% for data in pageData.HOW_TO_CONTENT.steps %}
|
|
62
|
+
<li id="step{{forloop.index}}" class="how-to-list-item">
|
|
63
|
+
<span>{{forloop.index}}.</span>{{data | replace: "$variable",
|
|
64
|
+
page.value}}
|
|
65
|
+
</li>
|
|
66
|
+
{% endfor %}
|
|
67
|
+
</ol>
|
|
68
|
+
</div>
|
|
69
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%}
|
|
70
|
+
</div>
|
|
71
|
+
</div>
|
|
72
|
+
{%- endif -%}
|
|
73
|
+
</div>
|
|
74
|
+
</div>
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<!-- nav bar code -->
|
|
2
|
+
|
|
3
|
+
{% assign lang = page.lang %} {% assign siteData = site.data.header[lang].data
|
|
4
|
+
%} {% assign featureData = page.fileName %} {% assign folder = page.folderName
|
|
5
|
+
%} {% assign Data= site.data[folder][lang][file] %}
|
|
6
|
+
<nav class="appscms-navbar">
|
|
7
|
+
<div class="row w-100 h-100">
|
|
8
|
+
<div class="col-11 mx-auto">
|
|
9
|
+
<div class="appscms-navbar-nav">
|
|
10
|
+
{%- if siteData.navbarBrandLogoSvg -%}
|
|
11
|
+
<a href="/"> {{siteData.navbarBrandLogoSvg}} </a>
|
|
12
|
+
{%- elsif siteData.navbarBrandText -%}
|
|
13
|
+
<span> {{siteData.navbarBrandText}}
|
|
14
|
+
{%- else -%}
|
|
15
|
+
{%- endif -%}
|
|
16
|
+
{%- if siteData.navItems -%}
|
|
17
|
+
<div class="appscms-navbar-nav-links">
|
|
18
|
+
{%- for item in siteData.navItems -%}
|
|
19
|
+
<a class="appscms-nav-link" href="{{item.url}}">{{item.name}}</a>
|
|
20
|
+
{%- endfor -%}
|
|
21
|
+
</div>
|
|
22
|
+
{%- endif -%}
|
|
23
|
+
<div id="hamburger" data-open="false" class="hamburger">
|
|
24
|
+
<svg
|
|
25
|
+
style="font-size:25px"
|
|
26
|
+
stroke="currentColor"
|
|
27
|
+
fill="currentColor"
|
|
28
|
+
stroke-width="0"
|
|
29
|
+
viewBox="0 0 512 512"
|
|
30
|
+
aria-hidden="true"
|
|
31
|
+
focusable="false"
|
|
32
|
+
height="50px"
|
|
33
|
+
width="1em"
|
|
34
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
35
|
+
>
|
|
36
|
+
<path
|
|
37
|
+
fill="none"
|
|
38
|
+
stroke-linecap="round"
|
|
39
|
+
stroke-miterlimit="10"
|
|
40
|
+
stroke-width="48"
|
|
41
|
+
d="M88 152h336M88 256h336M88 360h336"
|
|
42
|
+
></path>
|
|
43
|
+
</svg>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
|
48
|
+
</nav>
|
|
49
|
+
|
|
50
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{%- if siteData.megaMenu -%}
|
|
2
|
+
<div class="appscms-toolbar">
|
|
3
|
+
<div class="row">
|
|
4
|
+
<div class="col-11 mx-auto">
|
|
5
|
+
<ul class="appscms-toolbar-list">
|
|
6
|
+
{%- for item in siteData.megaMenu.dropdown -%}
|
|
7
|
+
<li class="appscms-toolbar-list-item">
|
|
8
|
+
<span class="appscms-toolbar-list-item-span d-flex justify-content-between"> {{item.categoryName}}
|
|
9
|
+
<svg
|
|
10
|
+
class="arrow-svg"
|
|
11
|
+
fill="#fff" width="12px" hegiht="12px" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 30.727 30.727" xml:space="preserve"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M29.994,10.183L15.363,24.812L0.733,10.184c-0.977-0.978-0.977-2.561,0-3.536c0.977-0.977,2.559-0.976,3.536,0 l11.095,11.093L26.461,6.647c0.977-0.976,2.559-0.976,3.535,0C30.971,7.624,30.971,9.206,29.994,10.183z"></path> </g> </g></svg>
|
|
12
|
+
</span>
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
<ul class="list-item-dropdown">
|
|
16
|
+
<h4 class="list-item-dropdown-heading"> {{siteData.megaMenu.nav-link-name}}</h4>
|
|
17
|
+
<div class="row">
|
|
18
|
+
{%- assign count = 0 -%}
|
|
19
|
+
{% for i in item.links %}
|
|
20
|
+
{% assign count = count | plus:1 %}
|
|
21
|
+
{%- if count == 1 -%}
|
|
22
|
+
<div class="col-md-6 col-lg-4 col-xl-3">
|
|
23
|
+
{%- endif -%}
|
|
24
|
+
{% if count == 6 %}
|
|
25
|
+
<li>
|
|
26
|
+
<a class="toolbar-link" href="{{i.url}}">{{i.name}}</a>
|
|
27
|
+
</li>
|
|
28
|
+
</div>
|
|
29
|
+
{% assign count = 0 %}
|
|
30
|
+
{%- else -%}
|
|
31
|
+
<li>
|
|
32
|
+
<a class="toolbar-link" href="{{i.url}}">{{i.name}}</a>
|
|
33
|
+
</li>
|
|
34
|
+
{% endif %}
|
|
35
|
+
{% endfor %}
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
</ul>
|
|
41
|
+
</li>
|
|
42
|
+
{%- endfor -%}
|
|
43
|
+
</ul>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
{%- endif -%}
|
|
48
|
+
|
|
49
|
+
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
<section class="related-posts-section">
|
|
2
|
+
<div class="container mx-auto col-md-11 col-lg-9 col-sm-10 p-3 pb-3">
|
|
3
|
+
<div class="relatedPosts">
|
|
4
|
+
{%- if site.posts.size>0 -%} {%- if site.monumetricId and page.url != '/'
|
|
5
|
+
and page.lang == "en" -%}
|
|
6
|
+
|
|
7
|
+
<div class="row">
|
|
8
|
+
<div class="col-md-9 mx-auto">
|
|
9
|
+
{%- endif -%}
|
|
10
|
+
<div class="container heading">
|
|
11
|
+
<div class="row">
|
|
12
|
+
<div
|
|
13
|
+
class="col-xxl-8 col-lg-9 col-md-12 col-sm-12 offset-md-1 offset-sm-0 py-5 pt-md-5 pt-sm-3 mx-auto"
|
|
14
|
+
>
|
|
15
|
+
<div class="d-flex align-items-center justify-content-center">
|
|
16
|
+
<hr
|
|
17
|
+
class="flex-grow-1 mx-4 mb-0"
|
|
18
|
+
style="height: 2px; background-color: #000"
|
|
19
|
+
/>
|
|
20
|
+
<h1 class="text-center appscms-h3 my-4">Recent posts</h1>
|
|
21
|
+
<hr
|
|
22
|
+
class="flex-grow-1 mx-4 mb-0"
|
|
23
|
+
style="height: 2px; background-color: #000"
|
|
24
|
+
/>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
32
|
+
{%- endif -%} {%- endif -%}
|
|
33
|
+
<div class="row allblogs shadow appscms-blogs">
|
|
34
|
+
<div class="row px-4">
|
|
35
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
36
|
+
|
|
37
|
+
<div class="col-md-9 mx-auto">
|
|
38
|
+
<div class="row">
|
|
39
|
+
{%- endif -%} {% assign posts = site.posts |
|
|
40
|
+
where_exp:"post","post.url != page.url" %} {% for post in posts
|
|
41
|
+
limit: 6%} {%- include /authors/authors.html -%}
|
|
42
|
+
<div class="col-xl-4 col-lg-6 col-md-6 mb-4">
|
|
43
|
+
<div class="card h-100 appscms-blog-cards">
|
|
44
|
+
<a
|
|
45
|
+
class="text-decoration-none text-dark"
|
|
46
|
+
href="{{ post.url }}"
|
|
47
|
+
>
|
|
48
|
+
<img
|
|
49
|
+
class="card-img-top"
|
|
50
|
+
src="{{ post.image }}"
|
|
51
|
+
alt="Video thumbnail"
|
|
52
|
+
/>
|
|
53
|
+
<div class="card-body">
|
|
54
|
+
<h5 class="card-title">{{post.title}}</h5>
|
|
55
|
+
<div class="wrapfooter">
|
|
56
|
+
<span class="meta-footer-thumb"
|
|
57
|
+
><img
|
|
58
|
+
class="author-thumb ezlazyloaded"
|
|
59
|
+
loading="lazy"
|
|
60
|
+
src="{{image}}"
|
|
61
|
+
alt="{{authorName}}"
|
|
62
|
+
ezimgfmt="rs rscb1 src ng ngcb1"
|
|
63
|
+
data-ezsrc="https://safeimagekit.com/ezoimgfmt/d33wubrfki0l68.cloudfront.net/6ec825fe5d7100e36db90bc00382e77e2e242a20/f5cec/assets/images/udit.jpg?ezimgfmt=rs:35x35/rscb1/ng:webp/ngcb1"
|
|
64
|
+
ezoid="0.04631063861662277"
|
|
65
|
+
/></span>
|
|
66
|
+
<div class="author-meta">
|
|
67
|
+
<span class="post-name"
|
|
68
|
+
><a target="_blank" href="/blog"
|
|
69
|
+
>{{authorName}}</a
|
|
70
|
+
></span
|
|
71
|
+
><br />
|
|
72
|
+
<p class="post-date mb-0">
|
|
73
|
+
{{post.date | date_to_string }}
|
|
74
|
+
</p>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
</div>
|
|
78
|
+
</a>
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
81
|
+
{% endfor %} {%- if site.monumetricId and page.url != '/' and
|
|
82
|
+
page.lang == "en" -%}
|
|
83
|
+
</div>
|
|
84
|
+
</div>
|
|
85
|
+
{%- endif -%}
|
|
86
|
+
</div>
|
|
87
|
+
</div>
|
|
88
|
+
</div>
|
|
89
|
+
</div>
|
|
90
|
+
</section>
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
{%- include adblocker.html -%} {% assign scriptData =
|
|
2
|
+
site.data.[page.folderName][lang][file] %} {%- assign dataAtt =
|
|
3
|
+
"data-folderName='$folderName' data-lang='$lang' data-fileName='$fileName'
|
|
4
|
+
data-tool='$tool'" -%} {%- assign $folderName = '$folderName' -%} {%- if
|
|
5
|
+
site.removeJquery != true -%}
|
|
6
|
+
<script
|
|
7
|
+
defer
|
|
8
|
+
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
|
9
|
+
{%-
|
|
10
|
+
if
|
|
11
|
+
site.crossorigin
|
|
12
|
+
-%}
|
|
13
|
+
{{
|
|
14
|
+
}}
|
|
15
|
+
crossorigin
|
|
16
|
+
{%-
|
|
17
|
+
endif
|
|
18
|
+
-%}
|
|
19
|
+
></script>
|
|
20
|
+
{%- endif -%}
|
|
21
|
+
|
|
22
|
+
<script defer src="/assets/js/theme.js" crossorigin="anonymous"></script>
|
|
23
|
+
{%- if site.userTrackingCount -%} {%- include customScripts.html -%} {%- endif
|
|
24
|
+
-%} {%- if site.userTrackingCount and page.layout == "feature" -%}
|
|
25
|
+
<script defer src="/assets/js/usageTracking.js"></script>
|
|
26
|
+
<script defer src="/assets/js/usageTrackingEvents.js"></script>
|
|
27
|
+
<script defer src="/assets/js/sharePage.js"></script>
|
|
28
|
+
{%- endif -%} {%- if site.removeBootstrapJs != true -%}
|
|
29
|
+
<script
|
|
30
|
+
defer="defer"
|
|
31
|
+
src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"
|
|
32
|
+
integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns"
|
|
33
|
+
crossorigin="anonymous"
|
|
34
|
+
></script>
|
|
35
|
+
{%- endif -%} {{site.data.customcdns.customcdns.jsfiles}} {%- if
|
|
36
|
+
scriptData.jsfilepaths -%} {%- for path in scriptData.jsfilepaths -%} {%- assign
|
|
37
|
+
asset_dir = path -%} {%- if site.versioning and asset_dir != "" -%} {%- if
|
|
38
|
+
asset_dir contains "https" and asset_dir contains "https://" -%}
|
|
39
|
+
<script
|
|
40
|
+
defer
|
|
41
|
+
src="{{path}}"
|
|
42
|
+
data-folderName="{{page.folderName}}"
|
|
43
|
+
data-lang="{{page.lang}}"
|
|
44
|
+
data-fileName="{{page.fileName}}"
|
|
45
|
+
data-tool="{{page.tool}}"
|
|
46
|
+
data-permalink="{{page.permalink}}"
|
|
47
|
+
{%-
|
|
48
|
+
if
|
|
49
|
+
site.crossorigin
|
|
50
|
+
-%}
|
|
51
|
+
{{
|
|
52
|
+
}}
|
|
53
|
+
crossorigin
|
|
54
|
+
{%-
|
|
55
|
+
endif
|
|
56
|
+
-%}
|
|
57
|
+
></script>
|
|
58
|
+
{%- else -%}
|
|
59
|
+
<script
|
|
60
|
+
defer
|
|
61
|
+
src="{% ministamp { source_path: '{{ asset_dir }}', destination_path: '{{ asset_dir }}' } %}"
|
|
62
|
+
data-folderName="{{page.folderName}}"
|
|
63
|
+
data-lang="{{page.lang}}"
|
|
64
|
+
data-fileName="{{page.fileName}}"
|
|
65
|
+
data-tool="{{page.tool}}"
|
|
66
|
+
data-permalink="{{page.permalink}}"
|
|
67
|
+
{%-
|
|
68
|
+
if
|
|
69
|
+
site.crossorigin
|
|
70
|
+
-%}
|
|
71
|
+
{{
|
|
72
|
+
}}
|
|
73
|
+
crossorigin
|
|
74
|
+
{%-
|
|
75
|
+
endif
|
|
76
|
+
-%}
|
|
77
|
+
></script>
|
|
78
|
+
{%- endif -%} {%- else -%}
|
|
79
|
+
<script
|
|
80
|
+
defer
|
|
81
|
+
src="{{path}}"
|
|
82
|
+
data-folderName="{{page.folderName}}"
|
|
83
|
+
data-lang="{{page.lang}}"
|
|
84
|
+
data-fileName="{{page.fileName}}"
|
|
85
|
+
data-tool="{{page.tool}}"
|
|
86
|
+
data-permalink="{{page.permalink}}"
|
|
87
|
+
{%-
|
|
88
|
+
if
|
|
89
|
+
site.crossorigin
|
|
90
|
+
-%}
|
|
91
|
+
{{
|
|
92
|
+
}}
|
|
93
|
+
crossorigin
|
|
94
|
+
{%-
|
|
95
|
+
endif
|
|
96
|
+
-%}
|
|
97
|
+
></script>
|
|
98
|
+
{%- endif -%} {%- endfor -%} {%- endif -%} {%- if scriptData.jscdns -%} {%- for
|
|
99
|
+
item in scriptData.jscdns -%} {{item | replace:"$folderName", page.folderName |
|
|
100
|
+
replace: "$fileName", page.fileName | replace: "$lang", page.lang | replace:
|
|
101
|
+
"$tool", page.tool }} {%- endfor -%} {%- endif -%} {%- if page.layout == "frame"
|
|
102
|
+
-%} {%- assign font = "PT Sans" -%} {%- endif -%} {%- if page.layout ==
|
|
103
|
+
"photo-effects-home" -%} {%- assign font = "PT Sans" -%} {%- endif -%} {%- if
|
|
104
|
+
page.layout == "calculator" -%}
|
|
105
|
+
<script defer src="/assets/js/calculator-tooltip.js"></script>
|
|
106
|
+
{%- endif -%} {%- if page.layout == 'home-1' or page.layout == "feature-1" -%}
|
|
107
|
+
{%- assign font = "Inter" -%} {%- endif -%} {%- if site.removeFontAwesome !=
|
|
108
|
+
true -%}
|
|
109
|
+
<link
|
|
110
|
+
rel="stylesheet"
|
|
111
|
+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
|
|
112
|
+
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
|
|
113
|
+
crossorigin="anonymous"
|
|
114
|
+
referrerpolicy="no-referrer"
|
|
115
|
+
/>
|
|
116
|
+
{%- endif -%} {%- if page.layout == "feature" -%}
|
|
117
|
+
<script>
|
|
118
|
+
const toaster = document.querySelector(".toaster");
|
|
119
|
+
if (
|
|
120
|
+
!/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
|
|
121
|
+
navigator.userAgent
|
|
122
|
+
)
|
|
123
|
+
) {
|
|
124
|
+
if (navigator.userAgent.indexOf("Mac OS X") != -1) {
|
|
125
|
+
toaster.innerHTML = `Press Command + D to Bookmark this page`;
|
|
126
|
+
} else {
|
|
127
|
+
toaster.innerHTML = `Press Ctrl + D to Bookmark this page`;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
setTimeout(() => {
|
|
131
|
+
toaster.style.display = "none";
|
|
132
|
+
}, 20000);
|
|
133
|
+
</script>
|
|
134
|
+
{%- endif -%}
|
|
135
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
<div class="container">
|
|
3
|
+
<div class="row justify-content-center">
|
|
4
|
+
<div class="col-lg-6 col-md-8 col-10">
|
|
5
|
+
<form class="form-inline">
|
|
6
|
+
<div class="input-group w-100 shadow" id="appscms-searchbar">
|
|
7
|
+
<input
|
|
8
|
+
type="text"
|
|
9
|
+
class="form-control rounded-pill border-0 px-4" id="searchbar-placeholder"
|
|
10
|
+
placeholder ="Search the tool you are looking for"
|
|
11
|
+
style="width: 50%"
|
|
12
|
+
/>
|
|
13
|
+
<button type="submit" class="btn btn-link btn-search">
|
|
14
|
+
<svg height="22px" width="22px" xmlns="http://www.w3.org/2000/svg" width="800px" height="800px" viewBox="0 0 24 24" fill="none">
|
|
15
|
+
<path fill-rule="evenodd" clip-rule="evenodd" 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" fill="#000000"/>
|
|
16
|
+
</svg>
|
|
17
|
+
</button>
|
|
18
|
+
</div>
|
|
19
|
+
</form>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{%- if site.noFeatureBox == true or page.noBox == true -%}
|
|
2
|
+
<div class="feature-content-box" id="theme-content-box">{{content}}</div>
|
|
3
|
+
{%- else -%}
|
|
4
|
+
<div class="container appscms-upload-section-container">
|
|
5
|
+
<div class="row">
|
|
6
|
+
<div
|
|
7
|
+
class="col-xxl-4 col-lg-6 col-md-8 col-sm-10 offset-md-1 offset-sm-0 py-5 pt-md-3 pt-md pt-sm-3 mx-auto"
|
|
8
|
+
>
|
|
9
|
+
<div class="appscms-upload-section">
|
|
10
|
+
<div class="appscms-upload-icon">
|
|
11
|
+
<img height="48px" width="48px" src="/assets/document.png" alt="" />
|
|
12
|
+
</div>
|
|
13
|
+
<span>drag and drop here</span>
|
|
14
|
+
<div class="or-in-upload">
|
|
15
|
+
<div class="line-in-upload"></div>
|
|
16
|
+
<span>or</span>
|
|
17
|
+
<div class="line-in-upload"></div>
|
|
18
|
+
</div>
|
|
19
|
+
|
|
20
|
+
<div for="image-upload" class="upload-btn">Upload Image</div>
|
|
21
|
+
|
|
22
|
+
<div class="upload-from-drives">
|
|
23
|
+
<img
|
|
24
|
+
id="google-drive"
|
|
25
|
+
height="30px"
|
|
26
|
+
width="30px"
|
|
27
|
+
src="/assets/gdrive.png"
|
|
28
|
+
alt="googledrive"
|
|
29
|
+
/>
|
|
30
|
+
<img
|
|
31
|
+
id="dropbox"
|
|
32
|
+
height="30px"
|
|
33
|
+
width="30px"
|
|
34
|
+
src="/assets/dropbox.png"
|
|
35
|
+
alt="dropbox"
|
|
36
|
+
/>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
{%- endif -%}
|
|
44
|
+
<div id="workspace"></div>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{% assign file = page.fileName %}
|
|
2
|
+
{% assign lang = page.lang %}
|
|
3
|
+
{% assign folder = page.folderName %}
|
|
4
|
+
{% assign pageData = site.data[folder][lang][file] %}
|
|
5
|
+
{%- assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
<!DOCTYPE html>
|
|
9
|
+
<html lang="{{ page.lang }}">
|
|
10
|
+
{%- include appscms/head/head.html -%}
|
|
11
|
+
<link rel="stylesheet" href="assets/css/appscms-theme.css">
|
|
12
|
+
<body>
|
|
13
|
+
{%- include appscms/navbars/navbar.html -%}
|
|
14
|
+
{%- include appscms/navbars/toolbar.html -%}
|
|
15
|
+
{%- include appscms/headings/headings.html -%}
|
|
16
|
+
|
|
17
|
+
<div class="appcms-home-content-box" id="appcms-home-content-box">
|
|
18
|
+
{{ content }}
|
|
19
|
+
</div>
|
|
20
|
+
{%- include appscms/recent-posts/recent-posts.html -%}
|
|
21
|
+
<!-- {%- include appscms/extras/traffic-count.html -%} -->
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
{%- include appscms/footer/products.html -%}
|
|
26
|
+
{%- include appscms/footer/footer.html -%}
|
|
27
|
+
|
|
28
|
+
{%- include appscms/scripts/script.html -%}
|
|
29
|
+
|
|
30
|
+
</body>
|
|
31
|
+
</html>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{% assign file = page.fileName %}
|
|
2
|
+
{% assign lang = page.lang %}
|
|
3
|
+
{% assign folder = page.folderName %}
|
|
4
|
+
{% assign pageData = site.data[folder][lang][file] %}
|
|
5
|
+
{%- assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
<!DOCTYPE html>
|
|
9
|
+
<html lang="{{ page.lang }}">
|
|
10
|
+
{%- include appscms/head/head.html -%}
|
|
11
|
+
<body>
|
|
12
|
+
{%- include appscms/navbars/navbar.html -%}
|
|
13
|
+
{%- include appscms/navbars/toolbar.html -%}
|
|
14
|
+
{%- include appscms/headings/headings.html -%}
|
|
15
|
+
{%- include appscms/uploadbutton/uploadbutton.html -%}
|
|
16
|
+
{%- include appscms/featurehighlight/featurehighlight.html -%}
|
|
17
|
+
{%- include appscms/howto/howto.html -%}
|
|
18
|
+
{%- include appscms/faq/faq.html -%}
|
|
19
|
+
<div class="appcms-home-content-box" id="appcms-home-content-box">
|
|
20
|
+
{{ content }}
|
|
21
|
+
</div>
|
|
22
|
+
{%- include appscms/recent-posts/recent-posts.html -%}
|
|
23
|
+
<!-- {%- include appscms/extras/traffic-count.html -%} -->
|
|
24
|
+
{%- include appscms/extras/ratings.html -%}
|
|
25
|
+
|
|
26
|
+
{%- include appscms/footer/products.html -%}
|
|
27
|
+
{%- include appscms/footer/footer.html -%}
|
|
28
|
+
|
|
29
|
+
{%- include appscms/scripts/script.html -%}
|
|
30
|
+
|
|
31
|
+
</body>
|
|
32
|
+
</html>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{% assign file = page.fileName %}
|
|
2
|
+
{% assign lang = page.lang %}
|
|
3
|
+
{% assign folder = page.folderName %}
|
|
4
|
+
{% assign pageData = site.data[folder][lang][file] %}
|
|
5
|
+
{%- assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
6
|
+
<!DOCTYPE html>
|
|
7
|
+
<html lang="{{ page.lang }}">
|
|
8
|
+
{%- include appscms/head/head.html -%}
|
|
9
|
+
<body>
|
|
10
|
+
{%- include appscms/navbars/navbar.html -%}
|
|
11
|
+
{%- include appscms/navbars/toolbar.html -%}
|
|
12
|
+
{%- include appscms/headings/headings.html -%}
|
|
13
|
+
{%- include appscms/searchbar/searchbar.html -%}
|
|
14
|
+
{%- include appscms/category-tabs/category-tabs.html -%}
|
|
15
|
+
{%- include appscms/home/feature-boxes.html -%}
|
|
16
|
+
<div class="appcms-home-content-box" id="appcms-home-content-box">
|
|
17
|
+
{{ content }}
|
|
18
|
+
</div>
|
|
19
|
+
{%- include appscms/recent-posts/recent-posts.html -%}
|
|
20
|
+
<!-- {%- include appscms/extras/traffic-count.html -%} -->
|
|
21
|
+
{%- include appscms/footer/products.html -%}
|
|
22
|
+
{%- include appscms/footer/footer.html -%}
|
|
23
|
+
|
|
24
|
+
{%- include appscms/scripts/script.html -%}
|
|
25
|
+
|
|
26
|
+
</body>
|
|
27
|
+
</html>
|
data/_layouts/feature.html
CHANGED
|
@@ -419,12 +419,13 @@
|
|
|
419
419
|
categories= page.categories %} {%- endif -%} {%- if
|
|
420
420
|
site.data[folder][langen][file].tags -%} {% assign tags=
|
|
421
421
|
site.data[folder][langen][file].tags %} {%- else -%} {% assign tags=
|
|
422
|
-
page.tags %} {%- endif -%} {%- if
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
422
|
+
page.tags %} {%- endif -%} {%- if featureData.posts.size > 0 -%} {%- include
|
|
423
|
+
customblog/pageRelatedPosts.html -%} {%- else -%} {%- if categories.size > 0
|
|
424
|
+
or tags.size > 0 -%} {%- include section/related_categories_post.html -%}
|
|
425
|
+
{%- else -%} {%- include section/recent_posts.html -%} {%- endif -%} {%-
|
|
426
|
+
endif -%} {%- if site.customblogdata -%} {%- if categories.size> 0 or
|
|
427
|
+
tags.size>0-%} {%- include customblog/relatedposts.html -%} {%- else -%} {%-
|
|
428
|
+
include customblog/recentposts.html -%} {% endif %} {%- endif -%} {%- if
|
|
428
429
|
featureData.author.size > 0 -%} {% include
|
|
429
430
|
featurePageAuthors/featurePageAuthors.html %} {%- endif -%} {% include
|
|
430
431
|
footer/index.html %} {%- if site.customCode -%} {%- include customCode.html
|
data/assets/.DS_Store
CHANGED
|
Binary file
|