appscms-tools-theme 0.2.5 → 0.2.6

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: 4152e6c6de9f071a763f00ac8f89328b3b4f7e03fe37fc20a7e33a6da05f17e2
4
- data.tar.gz: 972fb9aced58636246efcb506659ebb0d53c3eb3ff212469db12275a042b1828
3
+ metadata.gz: 4afb5fdacd91a5f02add212a3a990ec931635dd557db9754ea8bb6c6efcd8d85
4
+ data.tar.gz: d7a665485b7b76878621dc1dc7dbd1324abe27b9f3184f0d357bf3f5b225b7e2
5
5
  SHA512:
6
- metadata.gz: f6081c81837ef03ed6643668034eef786114aa471120c6c90e20bb046bf45fd90d8190283c3214521b5598c00cab812894dc61e3e4a32563c472c8ab84f8fceb
7
- data.tar.gz: d9e9ff0790bf5272e690f033c96f06b9a23e11d8938355a55617ca8af938dbabb419c09255db0211c24f047e7205ef44c8f7cb3b4dc5105686a5f56672451c9d
6
+ metadata.gz: d04f9425c2c9a1dd83bc2661b56af1e4a7d861707a181d78bec24cbe948ff6e7ca5c606084443698b435ca534ffa3c98afdd41b09085add10bc553a1e0abc156
7
+ data.tar.gz: c88c69806dce6945410e12bbeacf5cdcfb152f3af48a09ff8af4bd5f02341e64891012fa2ce178d206eb1895896c5136e46bce67ac693dfacba9a6dd0737cd5f
data/_data/nav.json CHANGED
@@ -1,5 +1,10 @@
1
1
  {
2
- "navbar-brand-text": "Wordfinder",
3
- "navbar-brand-logo": "https://sta1.pdfdoctor.com/1/2962/logo.png.png",
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
- <script src="{{ '/assets/js/TopScroll.js' | relative_url }}"></script>
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 10rem !important;
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: 1.2rem 15px !important;
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.5
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