appscms-tools-theme 3.8.6 → 3.8.8
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/compress-pdf.json +308 -1
- data/_data/home/en/en.json +9 -9
- data/_includes/appscms/customblog/pageRelatedPosts.html +85 -0
- data/_includes/appscms/customblog/recentposts.html +68 -0
- data/_includes/appscms/customblog/relatedBlogs.html +84 -0
- data/_includes/appscms/customblog/relatedposts.html +201 -0
- data/_includes/appscms/featurePageAuthors/featurePageAuthors.html +97 -0
- data/_includes/appscms/footer/products.html +1 -1
- data/_includes/appscms/headings/headings.html +2 -1
- data/_includes/appscms/infographics/infographics.html +109 -0
- data/_includes/appscms/recent-posts/{recent-posts.html → recent_posts.html} +90 -90
- data/_includes/appscms/recent-posts/related_categories_post.html +199 -0
- data/_includes/cssfile/links.html +52 -22
- data/_layouts/appscms-feature-result.html +94 -0
- data/_layouts/appscms-feature.html +28 -8
- data/_layouts/appscms-home.html +4 -3
- data/assets/css/appscms-feature.css +114 -0
- data/assets/css/appscms-theme.css +221 -6
- data/assets/images/digipaint.svg +7 -0
- data/assets/js/appscms-search.js +9 -9
- metadata +11 -3
- data/assets/images/digipaint.jpg +0 -0
|
@@ -283,3 +283,117 @@
|
|
|
283
283
|
max-width: calc(50% - 20px);
|
|
284
284
|
z-index: 2147483647;
|
|
285
285
|
}
|
|
286
|
+
.inforgraphics_section {
|
|
287
|
+
width: 100%;
|
|
288
|
+
padding: 50px 0px 50px 0px;
|
|
289
|
+
border-top: 1px solid rgb(224, 224, 224);
|
|
290
|
+
display: flex;
|
|
291
|
+
flex-direction: column;
|
|
292
|
+
align-items: center;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.inforgraphics_section .wrapper {
|
|
296
|
+
display: flex;
|
|
297
|
+
max-width: 700px;
|
|
298
|
+
position: relative;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.inforgraphics_section .wrapper i {
|
|
302
|
+
top: 50%;
|
|
303
|
+
height: 44px;
|
|
304
|
+
width: 44px;
|
|
305
|
+
color: #343f4f;
|
|
306
|
+
cursor: pointer;
|
|
307
|
+
font-size: 1.15rem;
|
|
308
|
+
position: absolute;
|
|
309
|
+
text-align: center;
|
|
310
|
+
line-height: 44px;
|
|
311
|
+
background: #eee;
|
|
312
|
+
border-radius: 50%;
|
|
313
|
+
transform: translateY(-50%);
|
|
314
|
+
transition: transform 0.1s linear;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.inforgraphics_section .wrapper i:active {
|
|
318
|
+
transform: translateY(-50%) scale(0.9);
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.inforgraphics_section .wrapper i:hover {
|
|
322
|
+
background: #f2f2f2;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.inforgraphics_section .wrapper i:first-child {
|
|
326
|
+
left: 0px;
|
|
327
|
+
display: none;
|
|
328
|
+
z-index: 999;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.inforgraphics_section .wrapper i:last-child {
|
|
332
|
+
right: 0px;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.carousel {
|
|
336
|
+
display: flex;
|
|
337
|
+
max-width: 700px;
|
|
338
|
+
overflow-x: scroll;
|
|
339
|
+
scroll-snap-type: x mandatory;
|
|
340
|
+
scroll-behavior: smooth;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.carousel-inner {
|
|
344
|
+
display: flex;
|
|
345
|
+
flex-wrap: nowrap;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.slide {
|
|
349
|
+
flex: 0 0 calc(100% / 3);
|
|
350
|
+
scroll-snap-align: start;
|
|
351
|
+
padding: 20px;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.carousel img {
|
|
355
|
+
width: 100%;
|
|
356
|
+
object-fit: contain;
|
|
357
|
+
max-width: 100%;
|
|
358
|
+
height: auto;
|
|
359
|
+
border-radius: 8px;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.carousel-inner p {
|
|
363
|
+
text-align: center;
|
|
364
|
+
margin: 10px 0;
|
|
365
|
+
font-size: 14px;
|
|
366
|
+
white-space: normal;
|
|
367
|
+
word-wrap: break-word;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
@media screen and (max-width: 768px) {
|
|
371
|
+
.inforgraphics_section .wrapper {
|
|
372
|
+
max-width: 100%;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.carousel-inner p {
|
|
376
|
+
font-size: 20px;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.inforgraphics_section .wrapper i:first-child {
|
|
380
|
+
left: 0;
|
|
381
|
+
/* margin-left: 14px; */
|
|
382
|
+
z-index: 99;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.inforgraphics_section .wrapper i:last-child {
|
|
386
|
+
right: 0;
|
|
387
|
+
z-index: 99;
|
|
388
|
+
display: block !important;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.carousel {
|
|
392
|
+
overflow-x: hidden;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.slide {
|
|
396
|
+
flex: 0 0 100%;
|
|
397
|
+
margin-right: 0;
|
|
398
|
+
}
|
|
399
|
+
}
|
|
@@ -386,13 +386,22 @@ body {
|
|
|
386
386
|
display: flex;
|
|
387
387
|
align-items: center;
|
|
388
388
|
}
|
|
389
|
+
|
|
389
390
|
.appscms-tool .tool-top .tool-img {
|
|
390
|
-
padding:
|
|
391
|
-
|
|
391
|
+
padding: 0px;
|
|
392
|
+
margin-right: 21px;
|
|
393
|
+
background: white;
|
|
394
|
+
border-radius: 300px;
|
|
395
|
+
margin-left: 20px;
|
|
396
|
+
height: 60px;
|
|
397
|
+
width: 60px;
|
|
398
|
+
display: flex;
|
|
399
|
+
align-items: center;
|
|
392
400
|
}
|
|
393
401
|
.appscms-tool .tool-top .tool-img img {
|
|
394
|
-
|
|
395
|
-
|
|
402
|
+
filter: invert(1);
|
|
403
|
+
height: 37px;
|
|
404
|
+
width: 72px;
|
|
396
405
|
border-radius: 50%;
|
|
397
406
|
}
|
|
398
407
|
.appscms-tool .tool-text {
|
|
@@ -676,6 +685,13 @@ body {
|
|
|
676
685
|
|
|
677
686
|
/* Medium devices (desktops) */
|
|
678
687
|
@media (max-width: 768px) {
|
|
688
|
+
.appscms-tool .tool-top .tool-img img {
|
|
689
|
+
filter: invert(0);
|
|
690
|
+
}
|
|
691
|
+
.appscms-tool .tool-top .tool-img {
|
|
692
|
+
justify-content: center;
|
|
693
|
+
background: unset;
|
|
694
|
+
}
|
|
679
695
|
.appscms-tool {
|
|
680
696
|
box-shadow: none;
|
|
681
697
|
margin-bottom: 25px;
|
|
@@ -691,7 +707,6 @@ body {
|
|
|
691
707
|
}
|
|
692
708
|
.appscms-tool .tool-img {
|
|
693
709
|
padding: 0px !important;
|
|
694
|
-
filter: invert(1);
|
|
695
710
|
}
|
|
696
711
|
.appscms-tool .tool-img img {
|
|
697
712
|
height: 37px !important;
|
|
@@ -760,7 +775,7 @@ body {
|
|
|
760
775
|
}
|
|
761
776
|
.appscms-footer {
|
|
762
777
|
background-color: var(--while-color);
|
|
763
|
-
padding: 10px;
|
|
778
|
+
padding: 44px 10px 10px 10px;
|
|
764
779
|
border-top: 1px solid rgb(148, 148, 148);
|
|
765
780
|
}
|
|
766
781
|
|
|
@@ -939,3 +954,203 @@ body {
|
|
|
939
954
|
.audio-h2 {
|
|
940
955
|
font-size: 22px;
|
|
941
956
|
}
|
|
957
|
+
.shareModal {
|
|
958
|
+
display: none;
|
|
959
|
+
position: fixed;
|
|
960
|
+
z-index: 100000000000;
|
|
961
|
+
left: 0;
|
|
962
|
+
top: 0;
|
|
963
|
+
width: 100%;
|
|
964
|
+
height: 100%;
|
|
965
|
+
overflow: auto;
|
|
966
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
.shareModal .share-modal-content {
|
|
970
|
+
background-color: #fefefe;
|
|
971
|
+
margin: 15% auto;
|
|
972
|
+
padding: 20px;
|
|
973
|
+
/* border: 1px solid #888; */
|
|
974
|
+
width: 70%;
|
|
975
|
+
height: 200px;
|
|
976
|
+
text-align: center;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.shareModal .close-share-modal {
|
|
980
|
+
color: #aaa;
|
|
981
|
+
float: right;
|
|
982
|
+
display: none;
|
|
983
|
+
font-size: 28px;
|
|
984
|
+
font-weight: bold;
|
|
985
|
+
}
|
|
986
|
+
.shareModal h5 {
|
|
987
|
+
color: #000;
|
|
988
|
+
padding-top: 10px;
|
|
989
|
+
font-weight: 700;
|
|
990
|
+
}
|
|
991
|
+
.shareModal .close-share-modal:hover,
|
|
992
|
+
.shareModal .close-share-modal:focus {
|
|
993
|
+
color: black;
|
|
994
|
+
text-decoration: none;
|
|
995
|
+
cursor: pointer;
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
.share-modal-social {
|
|
999
|
+
display: flex;
|
|
1000
|
+
gap: 30px;
|
|
1001
|
+
height: 100%;
|
|
1002
|
+
padding-bottom: 60px;
|
|
1003
|
+
align-items: center;
|
|
1004
|
+
justify-content: center;
|
|
1005
|
+
}
|
|
1006
|
+
.share-modal-social a {
|
|
1007
|
+
color: #000;
|
|
1008
|
+
}
|
|
1009
|
+
.share-modal-social a i {
|
|
1010
|
+
font-size: 30px;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
.authors-list {
|
|
1014
|
+
border-top: 1px solid rgb(224, 224, 224);
|
|
1015
|
+
margin-top: 100px;
|
|
1016
|
+
padding: 100px;
|
|
1017
|
+
}
|
|
1018
|
+
.authors-list a {
|
|
1019
|
+
color: var(--dark-gray);
|
|
1020
|
+
}
|
|
1021
|
+
.featurePageAuthor {
|
|
1022
|
+
display: flex;
|
|
1023
|
+
flex-direction: column;
|
|
1024
|
+
width: 100%;
|
|
1025
|
+
justify-content: center;
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.featurePageAuthor .author-meta {
|
|
1029
|
+
width: 500px;
|
|
1030
|
+
margin: 0 auto;
|
|
1031
|
+
padding-bottom: 5rem;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
.featurePageAuthor .author-meta .authorName {
|
|
1035
|
+
font-size: 20px;
|
|
1036
|
+
padding: 1rem 0px;
|
|
1037
|
+
font-weight: 900;
|
|
1038
|
+
text-align: center;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
.featurePageAuthor .author-img {
|
|
1042
|
+
width: 100px;
|
|
1043
|
+
height: 100px;
|
|
1044
|
+
border-radius: 100%;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
.featurePageAuthor .author_bio {
|
|
1048
|
+
font-size: 16px;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
@media (max-width: 768px) {
|
|
1052
|
+
.authors-list {
|
|
1053
|
+
padding: 25px;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.featurePageAuthor .author-meta {
|
|
1057
|
+
width: 100%;
|
|
1058
|
+
}
|
|
1059
|
+
}
|
|
1060
|
+
.contributor {
|
|
1061
|
+
width: 100px;
|
|
1062
|
+
}
|
|
1063
|
+
.contributor .contributor-name {
|
|
1064
|
+
font-size: 13px;
|
|
1065
|
+
margin-top: 8px;
|
|
1066
|
+
text-transform: capitalize;
|
|
1067
|
+
}
|
|
1068
|
+
.infographics_section {
|
|
1069
|
+
width: 100%;
|
|
1070
|
+
padding: 50px 0px 50px 0px;
|
|
1071
|
+
border-top: 1px solid rgb(224, 224, 224);
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
.infographics_section .infographics-desc {
|
|
1075
|
+
position: absolute;
|
|
1076
|
+
color: #000;
|
|
1077
|
+
bottom: 0;
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
.infographics_section .slider {
|
|
1081
|
+
position: relative;
|
|
1082
|
+
max-width: 40rem;
|
|
1083
|
+
height: 26.625rem;
|
|
1084
|
+
margin: 0 auto;
|
|
1085
|
+
overflow: hidden;
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
.infographics_section .slide {
|
|
1089
|
+
position: absolute;
|
|
1090
|
+
top: 0;
|
|
1091
|
+
width: 100%;
|
|
1092
|
+
height: 26.625rem;
|
|
1093
|
+
display: flex;
|
|
1094
|
+
align-items: center;
|
|
1095
|
+
justify-content: center;
|
|
1096
|
+
transition: transform 1s;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
.infographics_section .slide img {
|
|
1100
|
+
width: 200px;
|
|
1101
|
+
height: 100%;
|
|
1102
|
+
/* object-fit: contain; */
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.infographics_section button {
|
|
1106
|
+
background: none;
|
|
1107
|
+
border: none;
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
.infographics_section button .fas {
|
|
1111
|
+
color: #000;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
.infographics_section .btn-slide {
|
|
1115
|
+
position: absolute;
|
|
1116
|
+
top: 50%;
|
|
1117
|
+
z-index: 10;
|
|
1118
|
+
|
|
1119
|
+
height: 5.5rem;
|
|
1120
|
+
width: 5.5rem;
|
|
1121
|
+
cursor: pointer;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.infographics_section .prev {
|
|
1125
|
+
left: 3rem;
|
|
1126
|
+
transform: translate(-50%, -50%);
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
.infographics_section .next {
|
|
1130
|
+
right: 3rem;
|
|
1131
|
+
transform: translate(50%, -50%);
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
.infographics_section .dots-container {
|
|
1135
|
+
display: flex;
|
|
1136
|
+
justify-content: center;
|
|
1137
|
+
align-items: center;
|
|
1138
|
+
position: relative;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
.infographics_section .dot {
|
|
1142
|
+
width: 25px;
|
|
1143
|
+
height: 5px;
|
|
1144
|
+
margin: 15px 5px;
|
|
1145
|
+
border-radius: 0.5rem;
|
|
1146
|
+
background: rgba(39, 39, 39, 0.5);
|
|
1147
|
+
cursor: pointer;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
.infographics_section .dot.active {
|
|
1151
|
+
background: #272727;
|
|
1152
|
+
}
|
|
1153
|
+
.slide img:hover {
|
|
1154
|
+
transform: scale(1.4);
|
|
1155
|
+
transition: cubic-bezier(0.165, 0.84, 0.44, 1);
|
|
1156
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
2
|
+
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
|
3
|
+
<svg width="64px" height="64px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff">
|
|
4
|
+
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
|
5
|
+
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<g id="SVGRepo_iconCarrier"> <path d="M10 6H14.8C15.9201 6 16.4802 6 16.908 6.21799C17.2843 6.40973 17.5903 6.71569 17.782 7.09202C18 7.51984 18 8.07989 18 9.2V14M2 6H6M18 18V22M22 18L9.2 18C8.07989 18 7.51984 18 7.09202 17.782C6.71569 17.5903 6.40973 17.2843 6.21799 16.908C6 16.4802 6 15.9201 6 14.8V2" stroke="#ffffff" stroke-width="1.9200000000000004" stroke-linecap="round" stroke-linejoin="round"/> </g>
|
|
7
|
+
</svg>
|
data/assets/js/appscms-search.js
CHANGED
|
@@ -6,63 +6,63 @@ const features= [
|
|
|
6
6
|
"name": "Appscms feature",
|
|
7
7
|
"description": "Appscms feature layout with new design",
|
|
8
8
|
"color": "#1A2EE7",
|
|
9
|
-
"icon": "/assets/images/digipaint.
|
|
9
|
+
"icon": "/assets/images/digipaint.svg",
|
|
10
10
|
"url": "/appscms-feature"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"name": "Appscms feature",
|
|
14
14
|
"description": "Appscms feature layout with new design",
|
|
15
15
|
"color": "#1A2EE7",
|
|
16
|
-
"icon": "/assets/images/digipaint.
|
|
16
|
+
"icon": "/assets/images/digipaint.svg",
|
|
17
17
|
"url": "/appscms-feature"
|
|
18
18
|
},
|
|
19
19
|
{
|
|
20
20
|
"name": "Appscms feature",
|
|
21
21
|
"description": "Appscms feature layout with new design",
|
|
22
22
|
"color": "#1A2EE7",
|
|
23
|
-
"icon": "/assets/images/digipaint.
|
|
23
|
+
"icon": "/assets/images/digipaint.svg",
|
|
24
24
|
"url": "/appscms-feature"
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
27
|
"name": "Appscms feature",
|
|
28
28
|
"description": "Appscms feature layout with new design",
|
|
29
29
|
"color": "#1A2EE7",
|
|
30
|
-
"icon": "/assets/images/digipaint.
|
|
30
|
+
"icon": "/assets/images/digipaint.svg",
|
|
31
31
|
"url": "/appscms-feature"
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
34
|
"name": "Appscms home",
|
|
35
35
|
"description": "Appscms feature layout with new design",
|
|
36
36
|
"color": "#1A2EE7",
|
|
37
|
-
"icon": "/assets/images/digipaint.
|
|
37
|
+
"icon": "/assets/images/digipaint.svg",
|
|
38
38
|
"url": "/appscms-feature"
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"name": "Appscms home",
|
|
42
42
|
"description": "Appscms feature layout with new design",
|
|
43
43
|
"color": "#1A2EE7",
|
|
44
|
-
"icon": "/assets/images/digipaint.
|
|
44
|
+
"icon": "/assets/images/digipaint.svg",
|
|
45
45
|
"url": "/appscms-feature"
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
48
|
"name": "Appscms home",
|
|
49
49
|
"description": "Appscms feature layout with new design",
|
|
50
50
|
"color": "#1A2EE7",
|
|
51
|
-
"icon": "/assets/images/digipaint.
|
|
51
|
+
"icon": "/assets/images/digipaint.svg",
|
|
52
52
|
"url": "/appscms-feature"
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
55
|
"name": "Appscms home",
|
|
56
56
|
"description": "Appscms feature layout with new design",
|
|
57
57
|
"color": "#1A2EE7",
|
|
58
|
-
"icon": "/assets/images/digipaint.
|
|
58
|
+
"icon": "/assets/images/digipaint.svg",
|
|
59
59
|
"url": "/appscms-feature"
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"name": "Appscms home",
|
|
63
63
|
"description": "Appscms feature layout with new design",
|
|
64
64
|
"color": "#1A2EE7",
|
|
65
|
-
"icon": "/assets/images/digipaint.
|
|
65
|
+
"icon": "/assets/images/digipaint.svg",
|
|
66
66
|
"url": "/appscms-feature"
|
|
67
67
|
}
|
|
68
68
|
]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
@@ -110,10 +110,15 @@ files:
|
|
|
110
110
|
- _includes/adsense/adsense.html
|
|
111
111
|
- _includes/alternates/alternates.html
|
|
112
112
|
- _includes/appscms/category-tabs/category-tabs.html
|
|
113
|
+
- _includes/appscms/customblog/pageRelatedPosts.html
|
|
114
|
+
- _includes/appscms/customblog/recentposts.html
|
|
115
|
+
- _includes/appscms/customblog/relatedBlogs.html
|
|
116
|
+
- _includes/appscms/customblog/relatedposts.html
|
|
113
117
|
- _includes/appscms/extras/ratings.html
|
|
114
118
|
- _includes/appscms/extras/recent-posts.html
|
|
115
119
|
- _includes/appscms/extras/traffic-count.html
|
|
116
120
|
- _includes/appscms/faq/faq.html
|
|
121
|
+
- _includes/appscms/featurePageAuthors/featurePageAuthors.html
|
|
117
122
|
- _includes/appscms/featurehighlight/featurehighlight.html
|
|
118
123
|
- _includes/appscms/footer/footer.html
|
|
119
124
|
- _includes/appscms/footer/products.html
|
|
@@ -122,9 +127,11 @@ files:
|
|
|
122
127
|
- _includes/appscms/headings/headings.html
|
|
123
128
|
- _includes/appscms/home/feature-boxes.html
|
|
124
129
|
- _includes/appscms/howto/howto.html
|
|
130
|
+
- _includes/appscms/infographics/infographics.html
|
|
125
131
|
- _includes/appscms/navbars/navbar.html
|
|
126
132
|
- _includes/appscms/navbars/toolbar.html
|
|
127
|
-
- _includes/appscms/recent-posts/
|
|
133
|
+
- _includes/appscms/recent-posts/recent_posts.html
|
|
134
|
+
- _includes/appscms/recent-posts/related_categories_post.html
|
|
128
135
|
- _includes/appscms/scripts/script.html
|
|
129
136
|
- _includes/appscms/searchbar/searchbar.html
|
|
130
137
|
- _includes/appscms/uploadbutton/uploadbutton.html
|
|
@@ -180,6 +187,7 @@ files:
|
|
|
180
187
|
- _layouts/appscms-contact.html
|
|
181
188
|
- _layouts/appscms-disclaimer.html
|
|
182
189
|
- _layouts/appscms-download.html
|
|
190
|
+
- _layouts/appscms-feature-result.html
|
|
183
191
|
- _layouts/appscms-feature.html
|
|
184
192
|
- _layouts/appscms-help.html
|
|
185
193
|
- _layouts/appscms-home.html
|
|
@@ -396,7 +404,7 @@ files:
|
|
|
396
404
|
- assets/images/cross.svg
|
|
397
405
|
- assets/images/debosmita.jpeg
|
|
398
406
|
- assets/images/digiball.jpg
|
|
399
|
-
- assets/images/digipaint.
|
|
407
|
+
- assets/images/digipaint.svg
|
|
400
408
|
- assets/images/document.png
|
|
401
409
|
- assets/images/download.png
|
|
402
410
|
- assets/images/dropbox.png
|
data/assets/images/digipaint.jpg
DELETED
|
Binary file
|