best-blogging-theme 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/custom-head.html +1 -1
- data/readme.md +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4114b17f0cb38f194bc4b3e40e0feaf15b0ee8cae43c4409e7915ad8134a67c
|
4
|
+
data.tar.gz: 3c6a91f6158a4e5eef4f84b9e7c9f1aec84330a31917e3b614074a7b0665a9b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44b74a4788f0a09d96299764010c9b6d5068199fccdad1b222124bb5188010ea9282ad7d17e0194bf77420deef3228e609eadbced5ae80b39056737db4e82538
|
7
|
+
data.tar.gz: 277fb578fe23c284270ae2725b4ddc49f16449c8d2905f6c716bd1de8b2ea8a63babf6b2d5bf020a679d9d0b5ec6cf80c028f3578358aa96f42ca52f095eb135
|
data/_includes/custom-head.html
CHANGED
@@ -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}}">
|
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
|
|