appscms-tools-theme 0.5.6 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
data/_layouts/home.html CHANGED
@@ -105,8 +105,14 @@
105
105
  </div>
106
106
  {%- endif -%}
107
107
  {%- include share/socialshare.html -%}
108
- {% include footer/index.html %}
109
- {% include script.html %}
108
+ {%- include Rating/rating.html -%}
109
+ {%- if page.categories or page.tags-%}
110
+ {%- include section/related_categories_post.html -%}
111
+ {%- else -%}
112
+ {%- include section/recent_posts.html -%}
113
+ {% endif %}
114
+ {% include footer/index.html %}
115
+ {% include script.html %}
110
116
  </body>
111
117
 
112
118
  </html>
data/_layouts/post.html CHANGED
@@ -46,7 +46,13 @@
46
46
  <div class="post-content">
47
47
  {{ content }}
48
48
  </div>
49
+
49
50
  {%- include paginationPostPage.html -%}
51
+ {%- if page.categories or page.tags-%}
52
+ {%- include section/related_categories_post.html -%}
53
+ {%- else -%}
54
+ {%- include section/recent_posts.html -%}
55
+ {% endif %}
50
56
  <div class="commentsection">
51
57
  {%- if site.disqus.shortname -%}
52
58
  {%- include disqus_comments.html -%}
data/assets/css/blog.css CHANGED
@@ -406,6 +406,22 @@ header {
406
406
  outline: none !important;
407
407
  }
408
408
 
409
+ /* recent post heading stlye */
410
+ .recent_post_heading{
411
+ width:100%;
412
+ font-size: 46px;
413
+ text-align: left;
414
+ font-weight: 800;
415
+ font-stretch: normal;
416
+ font-style: normal;
417
+ line-height: 1.24;
418
+ letter-spacing: normal;
419
+ color: rgb(17, 48, 78);
420
+ margin-bottom: 45px;
421
+ padding-top: 75px;
422
+ display: inline-block;
423
+ }
424
+
409
425
  @media (max-width: 768px) {
410
426
  .bd-search {
411
427
  padding: 10px 25px;
data/assets/css/tools.css CHANGED
@@ -1425,3 +1425,88 @@ ul li {
1425
1425
  text-align: center;
1426
1426
  text-decoration: none !important;
1427
1427
  }
1428
+ .rating-tool {
1429
+ width: 100%;
1430
+ display: flex;
1431
+ justify-content: center;
1432
+ align-items: center;
1433
+ padding: 20px 0px 20px 0px;
1434
+ border-top: 1px solid rgb(221, 221, 221);
1435
+ border-bottom: 1px solid rgb(221, 221, 221);
1436
+ }
1437
+ .rating-text {
1438
+ font-size: 17px;
1439
+ font-weight: 700;
1440
+ color: rgb(33, 33, 33);
1441
+ padding: 6px;
1442
+ }
1443
+ .rating-stars {
1444
+ color: #9d9d9d !important;
1445
+ padding-top: 17px;
1446
+ display: flex;
1447
+ align-items: center;
1448
+ }
1449
+ .rating-stars i {
1450
+ padding: 5px;
1451
+ font-size: 17px;
1452
+ }
1453
+ .rating-value {
1454
+ line-height: 24px;
1455
+ font-size: 16px;
1456
+ font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
1457
+ -webkit-font-smoothing: antialiased;
1458
+ font-weight: 400;
1459
+ color: rgb(33, 33, 33);
1460
+ padding: 6px;
1461
+ }
1462
+
1463
+
1464
+ /* RELATED POST && RECENT POST STYLING */
1465
+ .related_post_heading{
1466
+ width:100%;
1467
+ font-size: 46px;
1468
+ text-align: center;
1469
+ font-weight: 800;
1470
+ font-stretch: normal;
1471
+ font-style: normal;
1472
+ line-height: 1.24;
1473
+ letter-spacing: normal;
1474
+ color: rgb(17, 48, 78);
1475
+ margin-bottom: 45px;
1476
+ padding-top: 75px;
1477
+ display: inline-block;
1478
+ }
1479
+
1480
+
1481
+ /* Blog-card-footer styling */
1482
+ .card-footer {
1483
+ border: none;
1484
+ }
1485
+ .wrapfooter {
1486
+ display: flex;
1487
+ align-items: center;
1488
+ margin-bottom: 15px;
1489
+ }
1490
+ .wrapfooter img {
1491
+ width: 35px;
1492
+ height: 35px;
1493
+ border-radius: 50%;
1494
+ }
1495
+ .wrapfooter .author-meta {
1496
+ /* flex: 1 1 auto; */
1497
+ padding: 0 15px;
1498
+ }
1499
+ .wrapfooter .author-meta a {
1500
+ font-size: 15px;
1501
+ color: #000;
1502
+ text-transform: capitalize;
1503
+ }
1504
+ .wrapfooter .post-read-more {
1505
+ flex: 50;
1506
+ text-align: right;
1507
+ }
1508
+ .post-date {
1509
+ color: rgba(0, 0, 0, 0.44);
1510
+ font-size: 13px;
1511
+ }
1512
+ /* close */
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: 0.5.6
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-07 00:00:00.000000000 Z
11
+ date: 2021-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -83,13 +83,17 @@ files:
83
83
  - _data/languagesupport/compress-pdf-langs.json
84
84
  - _data/languagesupport/index-langs.json
85
85
  - _data/privacy/en/privacyPolicy.json
86
+ - _data/rating/rating.json
86
87
  - _data/termAndCondition/en/termAndCondition.json
88
+ - _includes/Rating/rating.html
89
+ - _includes/Rating/structureddata.html
87
90
  - _includes/author_bio.html
88
91
  - _includes/cssfile/links.html
89
92
  - _includes/custom-head.html
90
93
  - _includes/disqus_comments.html
91
94
  - _includes/dropdown/langdropdown.html
92
95
  - _includes/footer/index.html
96
+ - _includes/google-analytics.html
93
97
  - _includes/head/index.html
94
98
  - _includes/header/blogHeader.html
95
99
  - _includes/header/index.html
@@ -99,6 +103,9 @@ files:
99
103
  - _includes/script.html
100
104
  - _includes/section/alertbar.html
101
105
  - _includes/section/count.html
106
+ - _includes/section/recent_posts.html
107
+ - _includes/section/related_categories_post.html
108
+ - _includes/section/related_tag_post.html
102
109
  - _includes/share/socialshare.html
103
110
  - _layouts/aboutUs.html
104
111
  - _layouts/blog.html