appscms-tools-theme 0.5.7 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 461ff3fbd9a22ed7f285219803ffe94db527762657832ed250312ec4fda3a653
4
- data.tar.gz: 7ebe64968c2af531de314624ef5fac0754eba923f2fb5ab27832877294c60d0d
3
+ metadata.gz: 7f5f9f275cdcd6ae5dc7a18c536eb04b2b00c50075711404beffb57d51cf3d18
4
+ data.tar.gz: fa4ceb94a6da130e0bf401e52028673a89af85957828121b9fcdaf0be3ecbbf8
5
5
  SHA512:
6
- metadata.gz: 12295acc4aa617b9d9821797fee39b4eeefafed9747ce7ccdf5800ffabf90382a8a043c749d2b3bca7951910cac576f6195f4fc8b00a0a9b571e8f98d58075cf
7
- data.tar.gz: b3c512344b3adddda61d88cd8956aa473877d6c50643fc4802b7965e6d0d3213bdbe213518c4a35d1c3889bdde07053c8e61158474fce0b4669c09e36339b3b5
6
+ metadata.gz: 6e82173d027803b9a0b809f079f0aeb4e0860eb0758d2e30fc198fcb3bab3fb2253d9aa43d29e1f22868402acf81cc144bf139343d91279d1912c769d7ba70f3
7
+ data.tar.gz: 4cf53074ca8ede2f2dc06bf84753beb8487a065afe4f4c7345915bbbb11a090dda3db42d5d61325095bb8760195069f782277890db01691fc58b27a88f2dd7e2
@@ -1,5 +1,5 @@
1
- Manpreet_singh:
2
- name: Manpreet singh
1
+ ankita:
2
+ name: ankita
3
3
  image: /assets/images/avatar.png
4
4
  bio: Author4 of Mediumish, a Bootstrap Medium styled template available for WordPress, HTML, Ghost and Jekyll. You are currently previewing Jekyll template demo.
5
5
  twitter: https://twitter.com/home
@@ -1 +1 @@
1
- {"tools":[{"name":"compress-pdf","rating":"5.00","votes":1},{"name":"split-pdf","rating":"3.50","votes":2}]}
1
+ {"tools":[{"name":"split-pdf","rating":"4.14","votes":7},{"name":"compress-pdf","rating":"4.86","votes":7}]}
@@ -35,8 +35,6 @@ fetch('https://ratingapi-main.netlify.app/.netlify/functions/api/v1/rating/add',
35
35
  })
36
36
  .then(response => response.json())
37
37
  .then(data => {
38
- console.log(data.rating);
39
- console.log(rating);
40
38
  ratingValue.innerText=data.rating
41
39
  count.innerText=data.count
42
40
  })
@@ -20,6 +20,8 @@
20
20
  "category": "Productivity",
21
21
  "aggregateRating": {
22
22
  "@type": "AggregateRating",
23
+ "worstRating":"1",
24
+ "bestRating":"5",
23
25
  "ratingValue": "{{rating}}",
24
26
  "ratingCount": "{{votes}}"
25
27
  }
@@ -28,4 +28,6 @@
28
28
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css">
29
29
  <link rel="stylesheet" href="{{'/assets/css/blog.css' | relative_url }}">
30
30
  <script src="https://code.jquery.com/jquery-3.5.1.js"></script>
31
+
32
+ {%- include google-analytics.html -%}
31
33
  </head>
@@ -0,0 +1,23 @@
1
+ {% if jekyll.environment == 'production' and site.production_google_analytics %}
2
+ {%- assign GA_ID = site.production_google_analytics -%}
3
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ GA_ID }}"></script>
4
+ <script>
5
+ window.dataLayer = window.dataLayer || [];
6
+ function gtag() { dataLayer.push(arguments); }
7
+ gtag('js', new Date());
8
+
9
+ gtag('config', '{{ GA_ID }}');
10
+ </script>
11
+ {% endif %}
12
+
13
+ {% if jekyll.environment == 'development' and site.development_google_analytics %}
14
+ {%- assign GA_ID = site.development_google_analytics -%}
15
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ GA_ID }}"></script>
16
+ <script>
17
+ window.dataLayer = window.dataLayer || [];
18
+ function gtag(){dataLayer.push(arguments);}
19
+ gtag('js', new Date());
20
+
21
+ gtag('config', '{{ GA_ID }}');
22
+ </script>
23
+ {% endif %}
@@ -47,7 +47,7 @@
47
47
  "@context": "http://schema.org",
48
48
  "@type": "WebSite",
49
49
  "name": "{{site.name}}",
50
- "alternateName": "appscms",
50
+ "alternateName": "{{site.alternateName}}",
51
51
  "url": "{{site.siteurl}}"}
52
52
  </script>
53
53
  {%- if dataToShow.HOW_TO_CONTENT -%}
@@ -69,7 +69,7 @@
69
69
  {%- else -%}
70
70
  { "@type": "HowToStep",
71
71
  "text": "{{item}}",
72
- "image": "{{site.config.baseurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
72
+ "image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
73
73
  "url": "{{site.siteurl}}#step{{ forloop.index}}"
74
74
  },
75
75
  {%- endif -%}
@@ -79,10 +79,10 @@
79
79
  </script>
80
80
  {%- endif -%}
81
81
 
82
-
82
+ {%- if dataToShow.FAQ -%}
83
+
83
84
  <script type="application/ld+json">
84
85
  {
85
- {%- if dataToShow.FAQ -%}
86
86
  "@context": "http://schema.org",
87
87
  "@type": "FAQPage",
88
88
  "mainEntity": [
@@ -106,7 +106,14 @@
106
106
  {%- endif -%}
107
107
  {%- endfor -%}
108
108
  ]
109
- {%- endif -%}}
109
+ }
110
110
  </script>
111
+ {%- endif -%}
112
+
113
+ {%- if page.tool -%}
114
+ {%- include Rating/structureddata.html -%}
115
+ {%- endif -%}
116
+ <!-- GA -->
117
+ {%- include google-analytics.html -%}
111
118
  </head>
112
119
 
@@ -0,0 +1,43 @@
1
+ <div class="container">
2
+ <div class="relatedPosts">
3
+
4
+ <h1 class="related_post_heading">Recent Posts</h1>
5
+ <div class="row">
6
+ {% for recent in site.posts offset:1 limit:3 %}
7
+ {% if recent.url != page.url %}
8
+ <div class="col-lg-4 col-md-6 mb-4 card-group">
9
+ <div class="card h-100">
10
+ <a href="{{ recent.url }}">
11
+ <img src="{{ recent.image }}" class="card-img-top" alt="">
12
+ </a>
13
+ <div class="card-body">
14
+ <a class="text-decoration-none text-dark" href="{{ recent.url }}" class="anchor_link">
15
+ <h4 class="card-title mb-4 text-left">{{ recent.title }}</h4>
16
+ </a>
17
+ </div>
18
+ {% assign author = site.data.blog.authors[recent.author] %}
19
+ <div class="card-footer bg-white">
20
+ <div class="wrapfooter">
21
+ {% if recent.author %}
22
+ <span class="meta-footer-thumb">
23
+ <img class="author-thumb" src="{{ author.image }}" alt="{{ author.name }}">
24
+ </span>
25
+ {% endif %}
26
+
27
+ <span class="author-meta">
28
+ <span class="recent-name">
29
+ <a target="_blank" href="/blog">{{recent.author}}</a>
30
+ </span><br>
31
+ <span class="post-date">{{recent.date | date_to_string }}</span>
32
+ </span>
33
+ <span class="post-read-more"><a class="text-dark" href="{{ recent.url }}"
34
+ title="Read Story">Read More</a></span>
35
+ </div>
36
+ </div>
37
+ </div>
38
+ </div>
39
+ {% endif %}
40
+ {% endfor %}
41
+ </div>
42
+ </div>
43
+ </div>
@@ -0,0 +1,73 @@
1
+ <div class="container">
2
+ <div class="relatedPosts">
3
+
4
+ {%- if page.categories or page.tags-%}
5
+ <h2 class="pt-5 pb-0 related_post_heading">You might also like</h2>
6
+ {%- endif -%}
7
+
8
+ {% assign maxRelated = 3 %}
9
+ {% assign minCommonTags = 1 %}
10
+ {% assign maxRelatedCounter = 0 %}
11
+
12
+ <div class="row">
13
+ {% for post in site.posts %}
14
+ {% assign sameTagCount = 0 %}
15
+ {% assign commonTags = '' %}
16
+
17
+ {% for category in post.categories %}
18
+ {% if post.url != page.url %}
19
+ {% if page.categories contains category %}
20
+ {% assign sameTagCount = sameTagCount | plus: 1 %}
21
+
22
+
23
+ {% capture tagmarkup %} <span class="label label-default">{{ category }}</span> {% endcapture %}
24
+ {% assign commonTags = commonTags | append: tagmarkup %}
25
+ {% endif %}
26
+ {% endif %}
27
+ {% endfor %}
28
+
29
+
30
+ {% if sameTagCount >= minCommonTags %}
31
+ <div class="col-lg-4 col-md-6 mb-4 card-group">
32
+ <div class="card h-100">
33
+ <a href="{{ post.url }}">
34
+ <img src="{{ post.image }}" class="card-img-top" alt="">
35
+ </a>
36
+ <div class="card-body">
37
+ <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
38
+ <h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
39
+ </a>
40
+ </div>
41
+ {% assign author = site.data.blog.authors[post.author] %}
42
+ <div class="card-footer bg-white">
43
+ <div class="wrapfooter">
44
+ {% if post.author %}
45
+ <span class="meta-footer-thumb">
46
+ <img class="author-thumb" src="{{ author.image }}" alt="{{ author.name }}">
47
+ </span>
48
+ {% endif %}
49
+
50
+ <span class="author-meta">
51
+ <span class="post-name">
52
+ <a target="_blank" href="/blog">{{post.author}}</a>
53
+ </span><br>
54
+ <span class="post-date">{{post.date | date_to_string }}</span>
55
+ </span>
56
+ <span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
57
+ title="Read Story">Read More</a></span>
58
+ </div>
59
+ </div>
60
+ </div>
61
+ </div>
62
+ {% assign maxRelatedCounter = maxRelatedCounter | plus: 1 %}
63
+ {% if maxRelatedCounter >= maxRelated %}
64
+ {% break %}
65
+ {% endif %}
66
+ {% endif %}
67
+ {% endfor %}
68
+ {%- if page.tags -%}
69
+ {%- include section/related_tag_post.html -%}
70
+ {%- endif -%}
71
+ </div>
72
+ </div>
73
+ </div>
@@ -0,0 +1,60 @@
1
+ {% assign maxRelated = 1 %}
2
+ {% assign minCommonTags = 1 %}
3
+ {% assign maxRelatedCounter = 0 %}
4
+
5
+
6
+ {% for post in site.posts %}
7
+ {% assign sameTagCount = 0 %}
8
+ {% assign commonTags = '' %}
9
+
10
+ {% for tag in post.tags %}
11
+ {% if post.url != page.url %}
12
+ {% if page.tags contains tag %}
13
+ {% assign sameTagCount = sameTagCount | plus: 1 %}
14
+
15
+ {% capture tagmarkup %} <span class="label label-default">{{ tag }}</span> {% endcapture %}
16
+ {% assign commonTags = commonTags | append: tagmarkup %}
17
+
18
+ {% endif %}
19
+ {%- endif -%}
20
+ {% endfor %}
21
+
22
+
23
+ {% if sameTagCount >= minCommonTags %}
24
+ <div class="col-lg-4 col-md-6 mb-4 card-group">
25
+ <div class="card h-100">
26
+ <a href="{{ post.url }}">
27
+ <img src="{{ post.image }}" class="card-img-top" alt="">
28
+ </a>
29
+ <div class="card-body">
30
+ <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
31
+ <h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
32
+ </a>
33
+ </div>
34
+ {% assign author = site.data.blog.authors[post.author] %}
35
+ <div class="card-footer bg-white">
36
+ <div class="wrapfooter">
37
+ {% if post.author %}
38
+ <span class="meta-footer-thumb">
39
+ <img class="author-thumb" src="{{ author.image }}" alt="{{ author.name }}">
40
+ </span>
41
+ {% endif %}
42
+
43
+ <span class="author-meta">
44
+ <span class="post-name">
45
+ <a target="_blank" href="/blog">{{post.author}}</a>
46
+ </span><br>
47
+ <span class="post-date">{{post.date | date_to_string }}</span>
48
+ </span>
49
+ <span class="post-read-more"><a class="text-dark" href="{{ post.url }}" title="Read Story">Read
50
+ More</a></span>
51
+ </div>
52
+ </div>
53
+ </div>
54
+ </div>
55
+ {% assign maxRelatedCounter = maxRelatedCounter | plus: 1 %}
56
+ {% if maxRelatedCounter >= maxRelated %}
57
+ {% break %}
58
+ {% endif %}
59
+ {% endif %}
60
+ {% endfor %}
@@ -6,7 +6,8 @@ layout: blog
6
6
  <div class="row listrecent">
7
7
  {% for category in site.categories %}
8
8
  <div class="section-title col-md-12 mt-4">
9
- <h2 id="{{ category[0] | replace: ' ', '-' }}">Category <span class="text-capitalize">{{ category[0]
9
+ <h2 id="{{ category[0] | replace: ' ', '-' }}">Category
10
+ <span class="text-capitalize">{{ category[0]
10
11
  }}</span>
11
12
  </h2>
12
13
  </div>
@@ -5,80 +5,83 @@
5
5
  <!DOCTYPE html>
6
6
  <html lang="{{featureData.htmlLangAtt}}">
7
7
  {% include head/index.html %}
8
+
8
9
  <body>
9
10
  {% include header/index.html %}
10
11
  {%- include dropdown/langdropdown.html -%}
11
12
  <div class="flex-container">
12
13
  <div class="flex-class py-4 mt-4 mt-md-0 ">
13
- <div class="d-flex justify-content-center align-items-center"><span class="fHhdVc">
14
- <div class="div-cont feature-img mr-2">
15
- {%- if featureData.img -%}
16
- <img style=width:{{featureData.imgwidth}};height:{{featureData.imgheight}}; src="{{featureData.img}}" alt="{{featureData.imgalt}}">
17
- {%- else -%}
18
- <svg xmlns="http://www.w3.org/2000/svg"
19
- xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 36 36" fill="#000">
20
- <path
21
- d="M6,6 L9,18 L6,30 L18,27 L30,30 L27,18 L30,6 L18,9 L6,6 Z M3,3 L18,6.75 L33,3 L29.25,18 L33,33 L18,29.25 L3,33 L6.75,18 L3,3 Z">
22
- </path>
23
- </svg>
24
- {%- endif -%} </div>
25
- </span>
26
- <h1 class="feature-h1">{{featureData.H1 | replace: "$variable", page.value}}</h1>
27
- </div>
28
- <h2 class="feature-h2">{{featureData.H2 | replace: "$variable", page.value}}</h2>
14
+ <div class="d-flex justify-content-center align-items-center"><span class="fHhdVc">
15
+ <div class="div-cont feature-img mr-2">
16
+ {%- if featureData.img -%}
17
+ <img style=width:{{featureData.imgwidth}};height:{{featureData.imgheight}};
18
+ src="{{featureData.img}}" alt="{{featureData.imgalt}}">
19
+ {%- else -%}
20
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
21
+ viewBox="0 0 36 36" fill="#000">
22
+ <path
23
+ d="M6,6 L9,18 L6,30 L18,27 L30,30 L27,18 L30,6 L18,9 L6,6 Z M3,3 L18,6.75 L33,3 L29.25,18 L33,33 L18,29.25 L3,33 L6.75,18 L3,3 Z">
24
+ </path>
25
+ </svg>
26
+ {%- endif -%}
27
+ </div>
28
+ </span>
29
+ <h1 class="feature-h1">{{featureData.H1 | replace: "$variable", page.value}}</h1>
29
30
  </div>
31
+ <h2 class="feature-h2">{{featureData.H2 | replace: "$variable", page.value}}</h2>
32
+ </div>
30
33
  </div>
31
34
  <div class="box-padding">
32
- <div class="d-flex" id="__cond-922051">
33
- <div class="flex-container">
34
- <div class="flex-class">
35
- <div class="d-flex flex-column">
36
- <div class="box"
37
- style=background:{{featureData.color}};min-height:{{featureData.height}};width:{{featureData.width}}>
38
- <div class="box-border"></div>
39
- <div class="content-box">
40
- {{content}}
41
- </div>
35
+ <div class="d-flex" id="__cond-922051">
36
+ <div class="flex-container">
37
+ <div class="flex-class">
38
+ <div class="d-flex flex-column">
39
+ <div class="box"
40
+ style=background:{{featureData.color}};min-height:{{featureData.height}};width:{{featureData.width}}>
41
+ <div class="box-border"></div>
42
+ <div class="content-box">
43
+ {{content}}
42
44
  </div>
43
45
  </div>
44
46
  </div>
45
47
  </div>
46
48
  </div>
49
+ </div>
47
50
  </div>
48
51
  <div class="container mt-4">
49
52
  <div class="row px-0">
50
53
  {% for data in featureData.TEXTUAL_CONTENT %}
51
54
  <div class="col-lg-4 col-md-6 my-4">
52
- <div><img class="feature-card-img" src="{{data.logoUrl}}"
53
- alt={{data.header}}>
54
- <div class="feature-card-title">{{data.header | replace: "$variable", page.value}}</div>
55
- <div class="feature-card-desc">{{data.content | replace: "$variable", page.value}}</div>
56
- </div>
55
+ <div><img class="feature-card-img" src="{{data.logoUrl}}" alt={{data.header}}>
56
+ <div class="feature-card-title">{{data.header | replace: "$variable", page.value}}</div>
57
+ <div class="feature-card-desc">{{data.content | replace: "$variable", page.value}}</div>
57
58
  </div>
58
- {% endfor %}
59
59
  </div>
60
+ {% endfor %}
60
61
  </div>
62
+ </div>
61
63
  <div class="d-flex justify-content-center mt-5 mb-5" id="__cond-1011327">
62
- <div class="flex-container pb-5">
63
- <div class="flex-class">
64
- <div class=" d-flex flex-wrap justify-content-center">
65
- {%- if featureData.HOW_TO_CONTENT.logoImageUrl -%}
66
- <div class="how-to-img-wrapper "><img class="how-to-leftimg"
67
- src="{{featureData.HOW_TO_CONTENT.logoImageUrl}}" alt="{{featureData.HOW_TO_CONTENT.logoImageAlt}}">
64
+ <div class="flex-container pb-5">
65
+ <div class="flex-class">
66
+ <div class=" d-flex flex-wrap justify-content-center">
67
+ {%- if featureData.HOW_TO_CONTENT.logoImageUrl -%}
68
+ <div class="how-to-img-wrapper "><img class="how-to-leftimg"
69
+ src="{{featureData.HOW_TO_CONTENT.logoImageUrl}}"
70
+ alt="{{featureData.HOW_TO_CONTENT.logoImageAlt}}">
68
71
  </div>
69
- {%- endif -%}
70
- <div class="how-to-right">
71
- <h3 class="how-to-title">{{featureData.HOW_TO_CONTENT.heading | replace: "$variable",
72
- page.value}}</h3>
73
- <ol class="how-to-list">
74
- {% for data in featureData.HOW_TO_CONTENT.steps %}
75
- <li class="how-to-list-item">{{data | replace: "$variable", page.value}}</li>
76
- {% endfor %}
77
- </ol>
78
- </div>
72
+ {%- endif -%}
73
+ <div class="how-to-right">
74
+ <h3 class="how-to-title">{{featureData.HOW_TO_CONTENT.heading | replace: "$variable",
75
+ page.value}}</h3>
76
+ <ol class="how-to-list">
77
+ {% for data in featureData.HOW_TO_CONTENT.steps %}
78
+ <li class="how-to-list-item">{{data | replace: "$variable", page.value}}</li>
79
+ {% endfor %}
80
+ </ol>
79
81
  </div>
80
82
  </div>
81
83
  </div>
84
+ </div>
82
85
  </div>
83
86
  <div class="container">
84
87
  <div class="row">
@@ -88,24 +91,29 @@
88
91
  <ul class="list-unstyled">
89
92
  {% for data in featureData.FAQ %}
90
93
  <li>
91
- <h3 class="faq-question" itemprop="name">{{data.question | replace: "$variable", page.value}}<em
92
- style="transform: rotate(-135deg);">
94
+ <h3 class="faq-question" itemprop="name">{{data.question | replace: "$variable",
95
+ page.value}}<em style="transform: rotate(-135deg);">
93
96
  <i></i></em>
94
97
  </h3>
95
98
  <div style="display: block;">
96
- <p class="faq-answer" itemprop="text">{{data.answer | replace: "$variable", page.value}}</p>
99
+ <p class="faq-answer" itemprop="text">{{data.answer | replace: "$variable", page.value}}
100
+ </p>
97
101
  </div>
98
102
  </li>
99
103
  <hr>
100
104
  {% endfor %}
101
105
  </ul>
102
- </div>
106
+ </div>
103
107
  </div>
104
108
  </div>
105
-
106
- </div>
109
+ </div>
107
110
  {%- include share/socialshare.html -%}
108
111
  {%- include Rating/rating.html -%}
112
+ {%- if page.categories or page.tags-%}
113
+ {%- include section/related_categories_post.html -%}
114
+ {%- else -%}
115
+ {%- include section/recent_posts.html -%}
116
+ {% endif %}
109
117
  {% include footer/index.html %}
110
118
  {% include script.html %}
111
119
  </body>
data/_layouts/home.html CHANGED
@@ -106,8 +106,13 @@
106
106
  {%- endif -%}
107
107
  {%- include share/socialshare.html -%}
108
108
  {%- include Rating/rating.html -%}
109
- {% include footer/index.html %}
110
- {% include script.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 %}
111
116
  </body>
112
117
 
113
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
@@ -1459,3 +1459,54 @@ ul li {
1459
1459
  color: rgb(33, 33, 33);
1460
1460
  padding: 6px;
1461
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.7
4
+ version: 0.6.2
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-16 00:00:00.000000000 Z
11
+ date: 2021-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -93,6 +93,7 @@ files:
93
93
  - _includes/disqus_comments.html
94
94
  - _includes/dropdown/langdropdown.html
95
95
  - _includes/footer/index.html
96
+ - _includes/google-analytics.html
96
97
  - _includes/head/index.html
97
98
  - _includes/header/blogHeader.html
98
99
  - _includes/header/index.html
@@ -102,6 +103,9 @@ files:
102
103
  - _includes/script.html
103
104
  - _includes/section/alertbar.html
104
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
105
109
  - _includes/share/socialshare.html
106
110
  - _layouts/aboutUs.html
107
111
  - _layouts/blog.html