appscms-tools-theme 3.8.5 → 3.8.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 +1 -1
- data/_data/home/en/en.json +54 -26
- data/_includes/appscms/extras/ratings.html +1 -1
- data/_includes/appscms/faq/faq.html +6 -10
- data/_includes/appscms/featurehighlight/featurehighlight.html +45 -45
- data/_includes/appscms/footer/footer.html +3 -22
- data/_includes/appscms/head/head.html +2 -1
- data/_includes/appscms/headings/headings.html +3 -1
- data/_includes/appscms/home/feature-boxes.html +1 -1
- data/_includes/appscms/howto/howto.html +1 -1
- data/_includes/appscms/recent-posts/recent-posts.html +8 -8
- data/_includes/appscms/scripts/script.html +11 -11
- data/_includes/appscms/searchbar/searchbar.html +20 -6
- data/_includes/appscms/uploadbutton/uploadbutton.html +15 -9
- data/_layouts/appscms-audio.html +33 -0
- data/_layouts/appscms-download.html +24 -24
- data/_layouts/appscms-feature.html +17 -3
- data/_layouts/appscms-home.html +19 -4
- data/_layouts/appscms-video.html +33 -0
- data/assets/.DS_Store +0 -0
- data/assets/css/appscms-feature.css +90 -167
- data/assets/css/appscms-theme.css +40 -9
- data/assets/images/.DS_Store +0 -0
- data/assets/images/document.png +0 -0
- data/assets/images/video.png +0 -0
- data/assets/js/appscms-search.js +101 -0
- data/assets/js/appscms-theme.js +80 -41
- metadata +7 -3
- data/assets/images/image.webp +0 -0
|
@@ -46,6 +46,10 @@ body {
|
|
|
46
46
|
height: 100%;
|
|
47
47
|
justify-content: space-between;
|
|
48
48
|
}
|
|
49
|
+
.appscms-navbar-nav a {
|
|
50
|
+
display: flex;
|
|
51
|
+
align-items: center;
|
|
52
|
+
}
|
|
49
53
|
.appscms-navbar-nav-links {
|
|
50
54
|
width: 100%;
|
|
51
55
|
height: 100%;
|
|
@@ -187,7 +191,7 @@ body {
|
|
|
187
191
|
display: block;
|
|
188
192
|
cursor: pointer;
|
|
189
193
|
position: absolute;
|
|
190
|
-
right: -
|
|
194
|
+
right: -20px;
|
|
191
195
|
top: 5px;
|
|
192
196
|
z-index: 9999;
|
|
193
197
|
}
|
|
@@ -278,6 +282,10 @@ body {
|
|
|
278
282
|
margin: 20px 0px;
|
|
279
283
|
color: #000;
|
|
280
284
|
}
|
|
285
|
+
.appscms-h3 {
|
|
286
|
+
font-size: 30px;
|
|
287
|
+
color: var(--mid-gray);
|
|
288
|
+
}
|
|
281
289
|
.appscms-h2 {
|
|
282
290
|
font-size: 20px;
|
|
283
291
|
padding-top: 8px;
|
|
@@ -307,6 +315,7 @@ body {
|
|
|
307
315
|
/* category section */
|
|
308
316
|
.toolfilters {
|
|
309
317
|
margin-top: 80px;
|
|
318
|
+
cursor: pointer;
|
|
310
319
|
background-color: rgb(255, 255, 255);
|
|
311
320
|
display: flex;
|
|
312
321
|
height: 30px;
|
|
@@ -658,11 +667,11 @@ body {
|
|
|
658
667
|
#appscms-searchbar {
|
|
659
668
|
padding: 3px;
|
|
660
669
|
}
|
|
661
|
-
|
|
670
|
+
/*
|
|
662
671
|
toolfilter {
|
|
663
672
|
margin: auto;
|
|
664
673
|
padding: 0px 20px;
|
|
665
|
-
}
|
|
674
|
+
} */
|
|
666
675
|
}
|
|
667
676
|
|
|
668
677
|
/* Medium devices (desktops) */
|
|
@@ -676,13 +685,17 @@ body {
|
|
|
676
685
|
.appscms-tool .tool-top {
|
|
677
686
|
background-color: transparent;
|
|
678
687
|
flex-direction: column;
|
|
688
|
+
justify-content: center;
|
|
689
|
+
border-radius: 10px;
|
|
690
|
+
height: 72px;
|
|
679
691
|
}
|
|
680
692
|
.appscms-tool .tool-img {
|
|
681
693
|
padding: 0px !important;
|
|
694
|
+
filter: invert(1);
|
|
682
695
|
}
|
|
683
696
|
.appscms-tool .tool-img img {
|
|
684
|
-
height:
|
|
685
|
-
width:
|
|
697
|
+
height: 37px !important;
|
|
698
|
+
width: 37px !important;
|
|
686
699
|
border-radius: 20px !important;
|
|
687
700
|
}
|
|
688
701
|
.appscms-tool .tool-text {
|
|
@@ -747,7 +760,7 @@ body {
|
|
|
747
760
|
}
|
|
748
761
|
.appscms-footer {
|
|
749
762
|
background-color: var(--while-color);
|
|
750
|
-
padding:
|
|
763
|
+
padding: 10px;
|
|
751
764
|
border-top: 1px solid rgb(148, 148, 148);
|
|
752
765
|
}
|
|
753
766
|
|
|
@@ -786,12 +799,14 @@ body {
|
|
|
786
799
|
}
|
|
787
800
|
.success-msg {
|
|
788
801
|
text-align: center;
|
|
802
|
+
margin: 30px 0px;
|
|
789
803
|
color: var(--primary-color);
|
|
790
804
|
}
|
|
791
805
|
.go-back-block {
|
|
792
806
|
display: flex;
|
|
793
807
|
align-items: center;
|
|
794
808
|
justify-content: center;
|
|
809
|
+
margin: 30px 0px;
|
|
795
810
|
}
|
|
796
811
|
.go-back-block button {
|
|
797
812
|
background-color: var(--primary-color);
|
|
@@ -815,6 +830,7 @@ body {
|
|
|
815
830
|
width: 1px;
|
|
816
831
|
filter: brightness();
|
|
817
832
|
filter: brightness(100);
|
|
833
|
+
position: absolute;
|
|
818
834
|
}
|
|
819
835
|
.rating-tool {
|
|
820
836
|
display: flex;
|
|
@@ -823,6 +839,7 @@ body {
|
|
|
823
839
|
background-color: rgb(252, 252, 252);
|
|
824
840
|
border-radius: 50px;
|
|
825
841
|
height: 70px;
|
|
842
|
+
margin: 40px 0px;
|
|
826
843
|
}
|
|
827
844
|
#rating {
|
|
828
845
|
font-size: 25px;
|
|
@@ -874,12 +891,16 @@ body {
|
|
|
874
891
|
height: 50px;
|
|
875
892
|
width: 50px;
|
|
876
893
|
}
|
|
894
|
+
.website-showcases {
|
|
895
|
+
padding: 50px 0px;
|
|
896
|
+
}
|
|
877
897
|
.website-showcase {
|
|
878
898
|
display: flex;
|
|
879
899
|
flex-direction: column;
|
|
880
900
|
justify-content: center;
|
|
881
901
|
align-items: center;
|
|
882
|
-
margin-bottom:
|
|
902
|
+
margin-bottom: 25px;
|
|
903
|
+
overflow: hidden;
|
|
883
904
|
}
|
|
884
905
|
.website-showcase a {
|
|
885
906
|
color: var(--black-color);
|
|
@@ -887,15 +908,14 @@ body {
|
|
|
887
908
|
margin-top: 10px;
|
|
888
909
|
}
|
|
889
910
|
.feature-showcase {
|
|
890
|
-
display: flex;
|
|
891
911
|
padding: 50px 0px;
|
|
892
|
-
justify-content: space-between;
|
|
893
912
|
}
|
|
894
913
|
.feature-showcase-div {
|
|
895
914
|
display: flex;
|
|
896
915
|
flex-direction: column;
|
|
897
916
|
justify-content: center;
|
|
898
917
|
align-items: center;
|
|
918
|
+
margin-bottom: 25px;
|
|
899
919
|
}
|
|
900
920
|
.feature-showcase-div img {
|
|
901
921
|
height: 45px;
|
|
@@ -908,3 +928,14 @@ body {
|
|
|
908
928
|
.feature-showcase a {
|
|
909
929
|
color: var(--black-color);
|
|
910
930
|
}
|
|
931
|
+
|
|
932
|
+
.video-h1,
|
|
933
|
+
.audio-h1 {
|
|
934
|
+
font-weight: 600;
|
|
935
|
+
font-size: 53px;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
.video-h2,
|
|
939
|
+
.audio-h2 {
|
|
940
|
+
font-size: 22px;
|
|
941
|
+
}
|
data/assets/images/.DS_Store
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
---
|
|
2
|
+
---
|
|
3
|
+
|
|
4
|
+
const features= [
|
|
5
|
+
{
|
|
6
|
+
"name": "Appscms feature",
|
|
7
|
+
"description": "Appscms feature layout with new design",
|
|
8
|
+
"color": "#1A2EE7",
|
|
9
|
+
"icon": "/assets/images/digipaint.jpg",
|
|
10
|
+
"url": "/appscms-feature"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "Appscms feature",
|
|
14
|
+
"description": "Appscms feature layout with new design",
|
|
15
|
+
"color": "#1A2EE7",
|
|
16
|
+
"icon": "/assets/images/digipaint.jpg",
|
|
17
|
+
"url": "/appscms-feature"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "Appscms feature",
|
|
21
|
+
"description": "Appscms feature layout with new design",
|
|
22
|
+
"color": "#1A2EE7",
|
|
23
|
+
"icon": "/assets/images/digipaint.jpg",
|
|
24
|
+
"url": "/appscms-feature"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "Appscms feature",
|
|
28
|
+
"description": "Appscms feature layout with new design",
|
|
29
|
+
"color": "#1A2EE7",
|
|
30
|
+
"icon": "/assets/images/digipaint.jpg",
|
|
31
|
+
"url": "/appscms-feature"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "Appscms home",
|
|
35
|
+
"description": "Appscms feature layout with new design",
|
|
36
|
+
"color": "#1A2EE7",
|
|
37
|
+
"icon": "/assets/images/digipaint.jpg",
|
|
38
|
+
"url": "/appscms-feature"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "Appscms home",
|
|
42
|
+
"description": "Appscms feature layout with new design",
|
|
43
|
+
"color": "#1A2EE7",
|
|
44
|
+
"icon": "/assets/images/digipaint.jpg",
|
|
45
|
+
"url": "/appscms-feature"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "Appscms home",
|
|
49
|
+
"description": "Appscms feature layout with new design",
|
|
50
|
+
"color": "#1A2EE7",
|
|
51
|
+
"icon": "/assets/images/digipaint.jpg",
|
|
52
|
+
"url": "/appscms-feature"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "Appscms home",
|
|
56
|
+
"description": "Appscms feature layout with new design",
|
|
57
|
+
"color": "#1A2EE7",
|
|
58
|
+
"icon": "/assets/images/digipaint.jpg",
|
|
59
|
+
"url": "/appscms-feature"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "Appscms home",
|
|
63
|
+
"description": "Appscms feature layout with new design",
|
|
64
|
+
"color": "#1A2EE7",
|
|
65
|
+
"icon": "/assets/images/digipaint.jpg",
|
|
66
|
+
"url": "/appscms-feature"
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
const featureList= document.querySelector('#appscms-tools-section-row')
|
|
70
|
+
const renderFeatures=(query)=> {
|
|
71
|
+
featureList.innerHTML = "";
|
|
72
|
+
const filteredFeatures = features.filter(feature => feature.name.toLowerCase().includes(query.toLowerCase()));
|
|
73
|
+
filteredFeatures.forEach(item => {
|
|
74
|
+
const listItem = document.createElement("div");
|
|
75
|
+
const classNames = "col-xl-4 col-lg-6 col-md-6 appscms-tool-container";
|
|
76
|
+
let classList = classNames.split(" ");
|
|
77
|
+
classList.forEach(function(className) {
|
|
78
|
+
listItem.classList.add(className);
|
|
79
|
+
});
|
|
80
|
+
listItem.innerHTML = `
|
|
81
|
+
<a href="${item.url}">
|
|
82
|
+
<div class="appscms-tool">
|
|
83
|
+
<div class="tool-top" style="background-color: ${item.color};">
|
|
84
|
+
<div class="tool-img">
|
|
85
|
+
<img crossorigin="anonymous" src="${item.icon}" alt="img" />
|
|
86
|
+
</div>
|
|
87
|
+
<div class="tool-text">${item.description}</div>
|
|
88
|
+
</div>
|
|
89
|
+
<div class="tool-heading">${item.name}</div>
|
|
90
|
+
</div>
|
|
91
|
+
</a>
|
|
92
|
+
`;
|
|
93
|
+
featureList.appendChild(listItem);
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
const searchInput= document.querySelector('#search-features')
|
|
97
|
+
searchInput.addEventListener("input", function () {
|
|
98
|
+
console.log('ok')
|
|
99
|
+
const query = searchInput.value.trim();
|
|
100
|
+
renderFeatures(query);
|
|
101
|
+
});
|
data/assets/js/appscms-theme.js
CHANGED
|
@@ -1,14 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
---
|
|
3
|
+
|
|
4
|
+
if ("{{ site.safeui }}"==="true") {
|
|
5
|
+
document.addEventListener("DOMContentLoaded", function () {
|
|
6
|
+
var safuiAlert = document.querySelector("#safeui-alert");
|
|
7
|
+
if (safuiAlert) {
|
|
8
|
+
setTimeout(function () {
|
|
9
|
+
safuiAlert.style.transition = "1s";
|
|
10
|
+
safuiAlert.style.height = "0";
|
|
11
|
+
safuiAlert.style.paddingTop = "0";
|
|
12
|
+
safuiAlert.style.paddingBottom = "0";
|
|
13
|
+
safuiAlert.style.marginTop = "0";
|
|
14
|
+
safuiAlert.style.marginBottom = "0";
|
|
15
|
+
setTimeout(function () {
|
|
16
|
+
safuiAlert.parentNode.removeChild(safuiAlert);
|
|
17
|
+
}, 1000);
|
|
18
|
+
}, 10000);
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
1
22
|
const hamburger = document.querySelector("#hamburger");
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
23
|
+
const appscmsToolbar = document.querySelector(".appscms-toolbar");
|
|
24
|
+
const appscmsToolbarListItems = document.querySelectorAll(
|
|
25
|
+
".appscms-toolbar-list-item-span"
|
|
26
|
+
);
|
|
27
|
+
hamburger.addEventListener("click", () => {
|
|
28
|
+
if (hamburger.dataset.open === "1") {
|
|
29
|
+
hamburger.dataset.open = "0";
|
|
30
|
+
appscmsToolbar.style.right = "-272px";
|
|
31
|
+
appscmsToolbar.style.display = "none";
|
|
32
|
+
hamburger.innerHTML = ` <svg
|
|
12
33
|
style="font-size:25px"
|
|
13
34
|
stroke="currentColor"
|
|
14
35
|
fill="currentColor"
|
|
@@ -27,36 +48,54 @@ const hamburger = document.querySelector("#hamburger");
|
|
|
27
48
|
stroke-width="48"
|
|
28
49
|
d="M88 152h336M88 256h336M88 360h336"
|
|
29
50
|
></path>
|
|
30
|
-
</svg
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
width="1em" style="font-size:25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g clip-path="url(#clip0_429_11083)"> <path d="M7 7.00006L17 17.0001M7 17.0001L17 7.00006" stroke="#ffffff" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path> </g> <defs> <clipPath id="clip0_429_11083"> <rect width="24" height="24" fill="white"></rect> </clipPath> </defs> </g></svg
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
if (maxHeight && maxHeight !== "0px") {
|
|
46
|
-
// If the item is expanded, collapse it
|
|
47
|
-
item.nextElementSibling.style.maxHeight = "0";
|
|
48
|
-
item.nextElementSibling.style.opacity = "0";
|
|
49
|
-
item.nextElementSibling.style.height = "0";
|
|
50
|
-
} else {
|
|
51
|
-
// If the item is collapsed, expand it
|
|
52
|
-
item.nextElementSibling.style.maxHeight =
|
|
53
|
-
item.nextElementSibling.scrollHeight + "px";
|
|
54
|
-
item.nextElementSibling.style.opacity = "1";
|
|
55
|
-
item.nextElementSibling.style.height = "auto";
|
|
56
|
-
}
|
|
57
|
-
});
|
|
58
|
-
});
|
|
59
|
-
|
|
51
|
+
</svg>`;
|
|
52
|
+
} else {
|
|
53
|
+
hamburger.dataset.open = "1";
|
|
54
|
+
appscmsToolbar.style.right = "0px";
|
|
55
|
+
appscmsToolbar.style.display = "block";
|
|
56
|
+
hamburger.innerHTML = `<svg height="50px"
|
|
57
|
+
width="1em" style="font-size:25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g clip-path="url(#clip0_429_11083)"> <path d="M7 7.00006L17 17.0001M7 17.0001L17 7.00006" stroke="#ffffff" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path> </g> <defs> <clipPath id="clip0_429_11083"> <rect width="24" height="24" fill="white"></rect> </clipPath> </defs> </g></svg>`;
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
Array.from(appscmsToolbarListItems).map((item) => {
|
|
61
|
+
item.addEventListener("click", (e) => {
|
|
62
|
+
e.preventDefault();
|
|
63
|
+
var style = window.getComputedStyle(item.nextElementSibling);
|
|
64
|
+
var maxHeight = style.getPropertyValue("max-height");
|
|
60
65
|
|
|
66
|
+
if (maxHeight && maxHeight !== "0px") {
|
|
67
|
+
// If the item is expanded, collapse it
|
|
68
|
+
item.nextElementSibling.style.maxHeight = "0";
|
|
69
|
+
item.nextElementSibling.style.opacity = "0";
|
|
70
|
+
item.nextElementSibling.style.height = "0";
|
|
71
|
+
} else {
|
|
72
|
+
// If the item is collapsed, expand it
|
|
73
|
+
item.nextElementSibling.style.maxHeight =
|
|
74
|
+
item.nextElementSibling.scrollHeight + "px";
|
|
75
|
+
item.nextElementSibling.style.opacity = "1";
|
|
76
|
+
item.nextElementSibling.style.height = "auto";
|
|
77
|
+
}
|
|
78
|
+
});
|
|
79
|
+
});
|
|
61
80
|
|
|
62
|
-
|
|
81
|
+
if ("{{ site.removeBootstrapJs }}" === "true") {
|
|
82
|
+
const languagesModal = document.querySelector("#staticBackdrop");
|
|
83
|
+
const intModalBtn = document.querySelector("#int-modal-btn");
|
|
84
|
+
const closeBtn = document.querySelector("#close-modal");
|
|
85
|
+
|
|
86
|
+
if (intModalBtn) {
|
|
87
|
+
intModalBtn.addEventListener("click", () => {
|
|
88
|
+
languagesModal.style.display = "block";
|
|
89
|
+
languagesModal.classList.add("show");
|
|
90
|
+
let modal = document.createElement("div");
|
|
91
|
+
modal.classList.add("modal-backdrop", "show");
|
|
92
|
+
document.body.appendChild(modal);
|
|
93
|
+
});
|
|
94
|
+
closeBtn.addEventListener("click", () => {
|
|
95
|
+
languagesModal.style.display = "none";
|
|
96
|
+
languagesModal.classList.remove("show");
|
|
97
|
+
let modal = document.querySelector(".modal-backdrop");
|
|
98
|
+
document.body.removeChild(modal);
|
|
99
|
+
});
|
|
100
|
+
}
|
|
101
|
+
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appscms-tools-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.8.
|
|
4
|
+
version: 3.8.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-09-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -175,6 +175,7 @@ files:
|
|
|
175
175
|
- _layouts/aboutUs.html
|
|
176
176
|
- _layouts/allAuthors.html
|
|
177
177
|
- _layouts/appscms-about.html
|
|
178
|
+
- _layouts/appscms-audio.html
|
|
178
179
|
- _layouts/appscms-blog.html
|
|
179
180
|
- _layouts/appscms-contact.html
|
|
180
181
|
- _layouts/appscms-disclaimer.html
|
|
@@ -184,6 +185,7 @@ files:
|
|
|
184
185
|
- _layouts/appscms-home.html
|
|
185
186
|
- _layouts/appscms-privacy-policy.html
|
|
186
187
|
- _layouts/appscms-terms-and-conditions.html
|
|
188
|
+
- _layouts/appscms-video.html
|
|
187
189
|
- _layouts/audio.html
|
|
188
190
|
- _layouts/author.html
|
|
189
191
|
- _layouts/batch.html
|
|
@@ -395,6 +397,7 @@ files:
|
|
|
395
397
|
- assets/images/debosmita.jpeg
|
|
396
398
|
- assets/images/digiball.jpg
|
|
397
399
|
- assets/images/digipaint.jpg
|
|
400
|
+
- assets/images/document.png
|
|
398
401
|
- assets/images/download.png
|
|
399
402
|
- assets/images/dropbox.png
|
|
400
403
|
- assets/images/faceframe.png
|
|
@@ -405,7 +408,6 @@ files:
|
|
|
405
408
|
- assets/images/google-drive.png
|
|
406
409
|
- assets/images/google-drive.svg
|
|
407
410
|
- assets/images/image.png
|
|
408
|
-
- assets/images/image.webp
|
|
409
411
|
- assets/images/karuna.jpeg
|
|
410
412
|
- assets/images/karuna.png
|
|
411
413
|
- assets/images/keshav.webp
|
|
@@ -443,11 +445,13 @@ files:
|
|
|
443
445
|
- assets/images/udit.png
|
|
444
446
|
- assets/images/uo.svg
|
|
445
447
|
- assets/images/vectorpaint.svg
|
|
448
|
+
- assets/images/video.png
|
|
446
449
|
- assets/instagram.svg
|
|
447
450
|
- assets/js/TopScroll.js
|
|
448
451
|
- assets/js/adBlocker.js
|
|
449
452
|
- assets/js/ads.js
|
|
450
453
|
- assets/js/append-div.js
|
|
454
|
+
- assets/js/appscms-search.js
|
|
451
455
|
- assets/js/appscms-theme.js
|
|
452
456
|
- assets/js/batch.js
|
|
453
457
|
- assets/js/calculator-tooltip.js
|
data/assets/images/image.webp
DELETED
|
Binary file
|