best-blogging-theme 0.1.4 → 0.1.9

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: aa0523a601a297ad083d9cf17565e18077d0b10c936c30cd9caf10a79e250b83
4
- data.tar.gz: 2b3999b4a3b4ab9682a8c010e363dcc004ac2bf0a84985181a3757f0f699d9c8
3
+ metadata.gz: 2edf0b9ca5ef2204da827c9c3e4634cd77b3d1d19fabba53e9b35983ef050d73
4
+ data.tar.gz: d8818eb4be046e924802277ac92c456612feeb63b835addbb99acda18ee68400
5
5
  SHA512:
6
- metadata.gz: b298ef546ed3fac0075d9ec74bf65a89591d36917ba83377e7696265c28c3c99cb643a31b34f6188363143eee39e034139debbb9a7c50a085dcbb67fbaedf255
7
- data.tar.gz: '09823e6959a6a110aa109565ac420ebf8d698ecba2a5f7992477c6e8b7078891c32c4a7705daf3f97508e4ee6ddf88847163af7183ba71c7c023f4ee34b79f64'
6
+ metadata.gz: 882d57197ff82c03ae59011c56b48fca14daa0e4c9790b3df39b38cf641bcb37fc6490c22fbc70bb98d0ac58b87dac9c59f17c0deb1e18b65f6b24c5a933ed35
7
+ data.tar.gz: e6f1c3063afc5d79e5d0dc104ed3629e6c2c27058afa6b818bf401b0de3969d4ed95634111c7ece8bb00197af817a1bd3c7e3e0493727ed9fe1954ca2e2df67d
@@ -2,4 +2,4 @@ Manpreet:
2
2
  name: Manpreet singh
3
3
  image: /assets/images/manpreet.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
- twitter: https://twitter.com/home
5
+ link: https://twitter.com/home
@@ -1,4 +1,5 @@
1
1
  {
2
+ "color": "deepskyblue",
2
3
  "footerMenu": {
3
4
  "dropdown": [{
4
5
  "categoryName":"Cricket Posts",
@@ -22,7 +22,7 @@
22
22
  <meta data-rh="true" property="og:locale" content="en_US">
23
23
  <meta data-rh="true" property="og:site_name" content="{{site.name}}">
24
24
  <meta data-rh="true" property="og:url" content="{{site.url | append: page.url}}">
25
-
25
+ <meta data-rh="true" property="og:image" content="{{site.url | append: favicon}}">
26
26
 
27
27
  <meta data-rh="true" property="twitter:domain" content="{{site.url | append: page.url}}">
28
28
  <meta data-rh="true" property="twitter:url" content="{{site.url | append: page.url}}">
@@ -48,4 +48,7 @@
48
48
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
49
49
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
50
50
  <script src="https://code.jquery.com/jquery-3.5.1.js"></script>
51
+
52
+
53
+ {% include google-analytics.html %}
51
54
  </head>
@@ -1,6 +1,7 @@
1
1
  {%- assign footerData = site.data.blog.footer.footerMenu.dropdown -%}
2
+ {%- assign footerData2 = site.data.blog.footer -%}
2
3
  <div class="container-fluid">
3
- <div class="main_row row py-5 px-5 mx-0">
4
+ <div class="main_row row py-5 samePad mx-0">
4
5
  <div class="col-md-10 mx-auto">
5
6
  <div class="row d-flex justify-content-between">
6
7
  {%- for item in footerData -%}
@@ -20,7 +21,8 @@
20
21
  <input type="text" placeholder="Enter Your Email" class="input__design">
21
22
  </div>
22
23
  <a href="#">
23
- <button class="my_btn mt-3" value="Enter Your Email">Submit</button>
24
+ <button class="my_btn mt-3" value="Enter Your Email"
25
+ style="background-color:{{footerData2.color}}">Submit</button>
24
26
  </a>
25
27
  </div>
26
28
  <div class="col-12 mt-2">
@@ -28,7 +30,7 @@
28
30
  <div class="icons d-flex align-items-center justify-content-center">
29
31
  {%- for item in site.data.blog.footer.socialIcon -%}
30
32
  <a target="{{item.target}}" href="{{item.href}}">
31
- <i class="{{item.i}} s_link"></i>
33
+ <i class="{{item.i}} s_link" style="color:{{footerData2.color}}"></i>
32
34
  </a>
33
35
  {%- endfor -%}
34
36
  </div>
@@ -37,7 +39,7 @@
37
39
  </div>
38
40
  </div>
39
41
  </div>
40
- <div class="row m-0 py-3" style="background-color: #00ab6b;">
42
+ <div class="row m-0 py-3" style="background-color: {{footerData2.color}};">
41
43
  <div class="col-12">
42
44
  <div class="d-flex justify-content-between px-md-5 px-0 footer__flexbox">
43
45
  <p class="m-0 text-white">{{site.copyright_text}}</p>
@@ -0,0 +1,8 @@
1
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
2
+ <script>
3
+ window.dataLayer = window.dataLayer || [];
4
+ function gtag(){dataLayer.push(arguments);}
5
+ gtag('js', new Date());
6
+
7
+ gtag('config', '{{ site.google_analytics }}');
8
+ </script>
@@ -1,6 +1,6 @@
1
1
  <!-- start Header Area -->
2
2
  <div class="container-fluid navigationBottomLine">
3
- <div class="container px-5">
3
+ <div class="container samePad">
4
4
  <header>
5
5
  {% include header/nav-menu.html %}
6
6
  </header>
@@ -1,7 +1,7 @@
1
1
  <div class="col-lg-3 col-md-6 mb-4 card-group">
2
2
  <div class="card h-100" style="border-radius:16px" id="{{post.categories}}">
3
3
  <a href="{{ post.url }}">
4
- <img src="{{ post.image }}" class="card-img-top p-3" style="border-radius: 25px; height: 170px;"
4
+ <img src="{{ post.image }}" class="card-img-top p-3" style="border-radius: 25px;"
5
5
  alt="not found">
6
6
  </a>
7
7
  <div class="card-body">
@@ -1,4 +1,5 @@
1
- <div class="explore">
1
+ {%- assign footerData2 = site.data.blog.footer -%}
2
+ <div class="explore" style="background: {{footerData2.color}}">
2
3
  <h2 class="animate__animated animate__bounce animate__infinite">Explore</h2>
3
4
  <span class="d-none d-md-inline animate__animated animate__backInDown animate__infinite"
4
5
  style="font-size: 25px;">&#x2193;</span>
data/_layouts/blog.html CHANGED
@@ -29,7 +29,7 @@
29
29
  <div class="col-lg-3 col-md-6 mb-4 card-group">
30
30
  <div class="card h-100" style="border-radius:16px" id="{{post.categories}}">
31
31
  <a href="{{ post.url }}">
32
- <img src="{{ post.image }}" class="card-img-top p-3" style="border-radius: 25px; height: 170px;"
32
+ <img src="{{ post.image }}" class="card-img-top p-3" style="border-radius: 25px;"
33
33
  alt="not found">
34
34
  </a>
35
35
  <div class="card-body">
@@ -1,3 +1,4 @@
1
+
1
2
  .card:hover{
2
3
  transform: translateY(-20px);
3
4
  transition: all 0.15s ease;
@@ -22,6 +22,20 @@ body {
22
22
  font-family: Quicksand, sans-serif !important;
23
23
  }
24
24
 
25
+ pre{
26
+ display: block;
27
+ padding: 9.5px;
28
+ margin: 0 0 10px;
29
+ font-size: 13px;
30
+ line-height: 1.42857143;
31
+ color: #333;
32
+ word-break: break-all;
33
+ word-wrap: break-word;
34
+ background-color: #f5f5f5;
35
+ border: 1px solid #ccc;
36
+ border-radius: 4px;
37
+ }
38
+
25
39
  .navigationBottomLine {
26
40
  position: sticky;
27
41
  top: 0;
@@ -149,8 +163,17 @@ body {
149
163
  }
150
164
  }
151
165
 
166
+ .samePad{
167
+ padding:0 3rem;
168
+ }
169
+
170
+
171
+
152
172
  @media (max-width: 768px) {
153
173
  .bd-search {
154
174
  padding: 10px 25px;
155
175
  }
176
+ .samePad{
177
+ padding: 0 !important;
178
+ }
156
179
  }
Binary file
data/readme.md CHANGED
@@ -14,6 +14,7 @@ STEP:1 Add this lines of code in YOUR Gemfile. (so just copy it and paste it on
14
14
 
15
15
  GEMFILE ->
16
16
 
17
+ *******************************************************************************
17
18
  source "https://rubygems.org"
18
19
 
19
20
  gem "jekyll", "~> 3.9.0" // JEKYLL VERSION SHOULD BE SAME
@@ -30,11 +31,12 @@ group :jekyll_plugins do
30
31
  gem "jekyll-include-cache"
31
32
  gem 'jekyll-paginate'
32
33
  end
34
+ ******************************************************************************************
33
35
 
34
36
 
35
37
  STEP: 2 Also add this line of code in _config.yml. (so just copy it and paste it on your _config.yml)
36
38
 
37
- CONFIG.YML ->
39
+ ###### CONFIG.YML ->
38
40
  permalink: /blog/:title // IF YOU ARE SERVE BLOG SITE LIKE, WWW.DOMAIN.COM THEN USE /title.
39
41
  // BUT IF YOU ARE SERVE BLOG SITE LIKE, WWW.DOMAIN.COM/BLOG THEN USE SAME AS GIVEN PERMALINK: /blog/title.
40
42
 
@@ -307,6 +309,13 @@ after that you can see that comment system added to your website.
307
309
 
308
310
 
309
311
 
312
+ ## Theme Demo
313
+ ## https://thefrondend.com/
314
+
315
+ ## https://ultimateshyari.netlify.app/
316
+
317
+
318
+
310
319
 
311
320
 
312
321
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: best-blogging-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - manpreet-choudhary
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-21 00:00:00.000000000 Z
11
+ date: 2021-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -68,6 +68,7 @@ files:
68
68
  - _includes/custom-head.html
69
69
  - _includes/disqus_comments.html
70
70
  - _includes/footer/index.html
71
+ - _includes/google-analytics.html
71
72
  - _includes/header/index.html
72
73
  - _includes/header/nav-menu.html
73
74
  - _includes/pagination.html
@@ -88,6 +89,7 @@ files:
88
89
  - _sass/theme/pagination2.scss
89
90
  - assets/css/main.scss
90
91
  - assets/images/bebo-logo.svg
92
+ - assets/images/bg.jpg
91
93
  - assets/images/blogger-logotype.svg
92
94
  - assets/images/cancel.png
93
95
  - assets/images/favicon-16x16.png