appscms-tools-theme 0.2.5 → 0.2.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/nav.json +8 -3
- data/_includes/disqus_comments.html +11 -0
- data/_includes/header.html +33 -0
- data/_includes/script.html +4 -0
- data/_layouts/blog.html +3 -2
- data/_layouts/post.html +4 -2
- data/assets/css/blog.css +11 -13
- data/assets/images/logo.png +0 -0
- metadata +5 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4afb5fdacd91a5f02add212a3a990ec931635dd557db9754ea8bb6c6efcd8d85
|
|
4
|
+
data.tar.gz: d7a665485b7b76878621dc1dc7dbd1324abe27b9f3184f0d357bf3f5b225b7e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d04f9425c2c9a1dd83bc2661b56af1e4a7d861707a181d78bec24cbe948ff6e7ca5c606084443698b435ca534ffa3c98afdd41b09085add10bc553a1e0abc156
|
|
7
|
+
data.tar.gz: c88c69806dce6945410e12bbeacf5cdcfb152f3af48a09ff8af4bd5f02341e64891012fa2ce178d206eb1895896c5136e46bce67ac693dfacba9a6dd0737cd5f
|
data/_data/nav.json
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"navbar-brand-text": "
|
|
3
|
-
"navbar-brand-logo": "
|
|
4
|
-
"item": "Blog"
|
|
2
|
+
"navbar-brand-text": "",
|
|
3
|
+
"navbar-brand-logo": "/assets/images/logo.png",
|
|
4
|
+
"nav-item": "Blog",
|
|
5
|
+
"nav-item2": "",
|
|
6
|
+
"nav-item3": "",
|
|
7
|
+
"nav-item4": "",
|
|
8
|
+
"nav-item5": "",
|
|
9
|
+
"nav-item6": ""
|
|
5
10
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<div id="disqus_thread"></div>
|
|
2
|
+
<script>
|
|
3
|
+
(function () { // DON'T EDIT BELOW THIS LINE
|
|
4
|
+
var d = document, s = d.createElement('script');
|
|
5
|
+
s.src = 'https://wordswithletter.disqus.com/embed.js';
|
|
6
|
+
s.setAttribute('data-timestamp', +new Date());
|
|
7
|
+
(d.head || d.body).appendChild(s);
|
|
8
|
+
})();
|
|
9
|
+
</script>
|
|
10
|
+
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by
|
|
11
|
+
Disqus.</a></noscript>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<!-- header starts -->
|
|
2
|
+
<header id="header">
|
|
3
|
+
<!-- navigation startss -->
|
|
4
|
+
<nav class="navbar navbar-expand-lg navbar-dark bg-light">
|
|
5
|
+
{%- assign navbar = site.data.nav -%}
|
|
6
|
+
{% if navbar.navbar-brand-text != "" %}
|
|
7
|
+
<a class="navbar-brand" href="/" title="{{navbar.navbar-brand-text}}">{{navbar.navbar-brand-text}}</a>
|
|
8
|
+
|
|
9
|
+
{% else %}
|
|
10
|
+
<a href="/">
|
|
11
|
+
<img src="{{navbar.navbar-brand-logo}}" alt="{{navbar.navbar-brand-logo}}" class="navbar-brand-image">
|
|
12
|
+
|
|
13
|
+
</a>
|
|
14
|
+
{% endif %}
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
|
|
20
|
+
<i class="fas fa-bars fa-2x" style="color:#000"></i>
|
|
21
|
+
</button>
|
|
22
|
+
|
|
23
|
+
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
24
|
+
<ul class="navbar-nav ml-auto">
|
|
25
|
+
<li class="nav-item">
|
|
26
|
+
<a class="nav-link" href="/blog">{{site.data.nav.nav-item}}</a>
|
|
27
|
+
</li>
|
|
28
|
+
</ul>
|
|
29
|
+
</div>
|
|
30
|
+
</nav>
|
|
31
|
+
<!-- navbar close -->
|
|
32
|
+
</header>
|
|
33
|
+
<!-- header close -->
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<script src="{{ '/assets/js/TopScroll.js' | relative_url }}"></script>
|
|
2
|
+
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
|
3
|
+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
|
|
4
|
+
<script id="dsq-count-scr" src="//wordswithletter.disqus.com/count.js" async></script>
|
data/_layouts/blog.html
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<div class="container">
|
|
10
10
|
<div class="row justify-content-center section-title-wrap">
|
|
11
11
|
<div class="col-lg-12">
|
|
12
|
-
<h1 style="font-weight: 900;" class="display-4 m-0">{{ site.data.blog.h1 }}</h1>
|
|
12
|
+
<h1 style="font-weight: 900;" class="display-4 m-0 small_description">{{ site.data.blog.h1 }}</h1>
|
|
13
13
|
<p class="lead mb-5 mt-1" style="font-size: 18px;">
|
|
14
14
|
{{ site.data.blog.description }}
|
|
15
15
|
</p>
|
|
@@ -68,7 +68,8 @@
|
|
|
68
68
|
{% include section/count.html %}
|
|
69
69
|
</section>
|
|
70
70
|
{%- include section/alertbar.html -%}
|
|
71
|
-
|
|
71
|
+
|
|
72
|
+
{% include script.html %}
|
|
72
73
|
</body>
|
|
73
74
|
|
|
74
75
|
</html>
|
data/_layouts/post.html
CHANGED
|
@@ -49,13 +49,15 @@
|
|
|
49
49
|
{{ content }}
|
|
50
50
|
</div>
|
|
51
51
|
{%- include paginationPostPage.html -%}
|
|
52
|
+
<div class="commentsection">
|
|
53
|
+
{%- include disqus_comments.html -%}
|
|
54
|
+
</div>
|
|
52
55
|
</div>
|
|
53
56
|
</div>
|
|
54
57
|
</section>
|
|
55
58
|
{%- include section/count.html -%}
|
|
56
59
|
{%- include section/alertbar.html -%}
|
|
60
|
+
{% include script.html %}
|
|
57
61
|
</body>
|
|
58
62
|
|
|
59
|
-
<script src="{{ '/assets/js/TopScroll.js' | relative_url }}"></script>
|
|
60
|
-
|
|
61
63
|
</html>
|
data/assets/css/blog.css
CHANGED
|
@@ -32,7 +32,7 @@ header {
|
|
|
32
32
|
}
|
|
33
33
|
.navbar {
|
|
34
34
|
width: 100%;
|
|
35
|
-
padding: 1.2rem
|
|
35
|
+
padding: 1.2rem 9% !important;
|
|
36
36
|
position: fixed;
|
|
37
37
|
top: 0;
|
|
38
38
|
left: 0;
|
|
@@ -43,6 +43,11 @@ header {
|
|
|
43
43
|
color: var(--txtColor) !important;
|
|
44
44
|
font-weight: 900;
|
|
45
45
|
}
|
|
46
|
+
.navbar-brand-image {
|
|
47
|
+
width: 80%;
|
|
48
|
+
display: inline-block;
|
|
49
|
+
max-width: 30px;
|
|
50
|
+
}
|
|
46
51
|
.navbar-dark .navbar-toggler {
|
|
47
52
|
outline: none !important;
|
|
48
53
|
}
|
|
@@ -60,6 +65,7 @@ header {
|
|
|
60
65
|
font-size: 16px;
|
|
61
66
|
color: gray !important;
|
|
62
67
|
}
|
|
68
|
+
/* close */
|
|
63
69
|
|
|
64
70
|
/* blogs-card title, content styling */
|
|
65
71
|
.anchor_link {
|
|
@@ -381,7 +387,8 @@ header {
|
|
|
381
387
|
}
|
|
382
388
|
|
|
383
389
|
.navbar {
|
|
384
|
-
padding:
|
|
390
|
+
padding-left: 7% !important;
|
|
391
|
+
padding-right: 7% !important;
|
|
385
392
|
}
|
|
386
393
|
.title,
|
|
387
394
|
.description {
|
|
@@ -399,16 +406,7 @@ header {
|
|
|
399
406
|
display: block;
|
|
400
407
|
margin-top: 10px;
|
|
401
408
|
}
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
@media (max-width: 992px) {
|
|
405
|
-
.dropdown:hover .dropdown-menu {
|
|
406
|
-
left: 0px;
|
|
407
|
-
padding: 0;
|
|
408
|
-
}
|
|
409
|
-
.dropdown-item {
|
|
410
|
-
text-align: left;
|
|
411
|
-
font-weight: 600;
|
|
412
|
-
padding: 0.25rem 0;
|
|
409
|
+
.small_description {
|
|
410
|
+
font-size: 25px;
|
|
413
411
|
}
|
|
414
412
|
}
|
|
Binary file
|
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: 0.2.
|
|
4
|
+
version: 0.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
@@ -77,12 +77,15 @@ files:
|
|
|
77
77
|
- _data/share.yml
|
|
78
78
|
- _includes/author_bio.html
|
|
79
79
|
- _includes/custom-head.html
|
|
80
|
+
- _includes/disqus_comments.html
|
|
80
81
|
- _includes/footer/index.html
|
|
81
82
|
- _includes/head/index.html
|
|
83
|
+
- _includes/header.html
|
|
82
84
|
- _includes/header/index.html
|
|
83
85
|
- _includes/paginationBlogPage.html
|
|
84
86
|
- _includes/paginationPostPage.html
|
|
85
87
|
- _includes/postbox.html
|
|
88
|
+
- _includes/script.html
|
|
86
89
|
- _includes/section/alertbar.html
|
|
87
90
|
- _includes/section/count.html
|
|
88
91
|
- _layouts/aboutUs.html
|
|
@@ -103,6 +106,7 @@ files:
|
|
|
103
106
|
- assets/easy.svg
|
|
104
107
|
- assets/guaranty.svg
|
|
105
108
|
- assets/images/avatar.png
|
|
109
|
+
- assets/images/logo.png
|
|
106
110
|
- assets/js/TopScroll.js
|
|
107
111
|
- assets/pdf.svg
|
|
108
112
|
- assets/protect.svg
|