blogging-site-theme 0.1 → 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/_data/blog/alertbar.yml +3 -0
- data/_data/blog/footer.json +58 -54
- data/_data/theme/UI.json +3 -1
- data/_includes/custom-head.html +95 -53
- data/_includes/footer/index.html +65 -23
- data/_includes/header/index.html +1 -1
- data/_includes/pages/about.html +66 -0
- data/_includes/pages/contact.html +44 -0
- data/_includes/pages/dd.html +33 -0
- data/_includes/pages/pp.html +34 -0
- data/_includes/pages/tnc.html +71 -0
- data/_includes/postbox.html +4 -4
- data/_includes/scripts.html +2 -1
- data/_includes/section/alertbar.html +3 -1
- data/_includes/section/recent_posts.html +36 -35
- data/_includes/section/related_post.html +5 -6
- data/_layouts/blog.html +5 -4
- data/_layouts/post.html +1 -0
- data/_layouts/staticPages.html +22 -0
- data/_sass/theme/_blog.scss +63 -0
- data/assets/js/TopScroll.js +9 -0
- data/readme.md +116 -104
- metadata +10 -2
data/readme.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
-----------------------------
|
2
|
+
DEMO - https://bloggingwebsite.netlify.app/
|
3
|
+
-------------------------------
|
4
|
+
|
5
|
+
|
1
6
|
--------------------------------------
|
2
7
|
# BEST-BLOGGING-THEME
|
3
8
|
--------------------------------------
|
@@ -92,144 +97,170 @@ OR ANYWHERE ITS DEPEND UPON YOU.
|
|
92
97
|
//ensure that file extention will be .html, if .md then i am sure that you blog post pagination won't works.
|
93
98
|
|
94
99
|
---
|
95
|
-
|
96
|
-
|
100
|
+
|
101
|
+
layout: blog
|
102
|
+
title: BloggingSite //Title of blog
|
103
|
+
|
97
104
|
---
|
98
105
|
|
99
106
|
another example:
|
107
|
+
|
100
108
|
#### blog/index.html //inside blog folder
|
101
109
|
|
102
110
|
---
|
103
|
-
|
104
|
-
|
111
|
+
|
112
|
+
layout: blog
|
113
|
+
title: BloggingSite //Title of blog
|
114
|
+
|
105
115
|
---
|
106
116
|
|
107
|
-
|
108
|
-
|
109
|
-
|
117
|
+
---
|
118
|
+
|
119
|
+
CREATE FILE FOR CATEGORIES LAYOUT IN ROOT DIR:
|
120
|
+
|
121
|
+
---
|
110
122
|
|
111
123
|
#### FOR EXAMPLE
|
124
|
+
|
112
125
|
#### categories.md
|
126
|
+
|
113
127
|
---
|
128
|
+
|
114
129
|
layout: categories
|
115
130
|
title: BloggingSite Categories // TITLE OF BLOG Categories
|
116
131
|
permalink: /categories
|
132
|
+
|
117
133
|
---
|
118
134
|
|
119
135
|
#### IF YOU ARE USING BLOG LAYUT UNDER BLOG FOLDER
|
136
|
+
|
120
137
|
---
|
138
|
+
|
121
139
|
layout: categories
|
122
140
|
title: BloggingSite Categories // TITLE OF BLOG Categories
|
123
|
-
permalink: /blog/categories
|
124
|
-
---
|
141
|
+
permalink: /blog/categories
|
125
142
|
|
143
|
+
---
|
126
144
|
|
127
|
-
#### Now,
|
145
|
+
#### Now, you can see blog layout is visible in your project.
|
128
146
|
|
129
147
|
THESE LAYOUTS DATA DRIVEN BY JSON DATA OR YML FILES, YOU IF YOU WANT CHANGE FOR EXAMPLE:
|
148
|
+
|
130
149
|
#### TITLE, META, NAVLINK, LOGO, BLOGTITLE, TAGLINE, FOOTERLINK ETC.
|
131
150
|
|
151
|
+
---
|
132
152
|
|
133
|
-
|
134
|
-
#### CREATE blog(folder) in _data(dir), for ex:) _data/blog
|
153
|
+
#### CREATE blog(folder) in \_data(dir), for ex:) \_data/blog
|
135
154
|
|
136
155
|
UNDER THESE FOLLOWING JSON OR YML FILES. YOU CAN CHANGE DATA ACOORDING ON YOUR PROJECT.
|
137
156
|
|
138
157
|
#### 1. authors.yml
|
158
|
+
|
139
159
|
#### 2. blog.yml
|
160
|
+
|
140
161
|
#### 3. nav.json
|
162
|
+
|
141
163
|
#### 4. share.yml
|
164
|
+
|
142
165
|
#### 5. footer.json
|
166
|
+
|
143
167
|
#### 6. disquss comment system
|
144
168
|
|
145
169
|
#### authors.yml // BLOG POST AUTHOR CAN CHANGE HERE.
|
146
170
|
|
147
171
|
Manpreet:
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
172
|
+
name: Manpreet singh
|
173
|
+
image: /assets/images/manpreet.png
|
174
|
+
bio: Author4 of Mediumish, a Bootstrap Medium styled template available for WordPress, HTML, Ghost and Jekyll. You are currently previewing Jekyll template demo.
|
175
|
+
twitter: https://twitter.com/home
|
176
|
+
|
177
|
+
#### blog.yml //CHANGE H1 OR TAGLING OF BLOG
|
152
178
|
|
153
|
-
#### blog.yml //CHANGE H1 OR TAGLING OF BLOG
|
154
179
|
---
|
180
|
+
|
155
181
|
h1: Latest Posts from our Blog
|
156
182
|
tagline: Best Blogging Site
|
157
183
|
|
158
|
-
---
|
159
|
-
|
184
|
+
---
|
185
|
+
|
186
|
+
// REMOVE --- END OF THE LINE, ITS NOT REQUIRED.
|
160
187
|
|
161
188
|
#### nav.json // NAVLINK CAN BE CHANGE .
|
189
|
+
|
162
190
|
{
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
191
|
+
"navbarBrandText": "", //NAVTEXT LIKE "bloggingsite"
|
192
|
+
"navbarBrandLogo": "/assets/images/bebo-logo.svg", //LOGO
|
193
|
+
"navItems":[
|
194
|
+
{
|
195
|
+
"name":"home", //navlinks
|
196
|
+
"url":"/home" // navurl
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"name":"blog",
|
200
|
+
"url":"/blog"
|
201
|
+
}
|
202
|
+
]
|
175
203
|
}
|
176
204
|
|
177
205
|
you can add nav links according to your requirements.
|
178
206
|
|
179
207
|
#### share.yml //if you want change sharing handle then you can
|
180
|
-
|
181
|
-
####
|
208
|
+
|
209
|
+
#### Sharing options at the bottom of the post.
|
210
|
+
|
211
|
+
#### Icons from <https://fontawesome.com/>
|
182
212
|
|
183
213
|
label: 'Share'
|
184
214
|
platforms:
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
#### footer.json
|
215
|
+
|
216
|
+
- type: Twitter
|
217
|
+
icon: 'fab fa-twitter'
|
218
|
+
link: 'https://twitter.com/intent/tweet?url=URL'
|
219
|
+
- type: Facebook
|
220
|
+
icon: 'fab fa-facebook-square'
|
221
|
+
link: 'https://www.facebook.com/sharer/sharer.php?u=URL'
|
222
|
+
- type: Linkedin
|
223
|
+
icon: 'fab fa-linkedin'
|
224
|
+
link: 'https://www.linkedin.com/sharing/share-offsite/?url=URL'
|
225
|
+
|
226
|
+
#### footer.json
|
227
|
+
|
197
228
|
{
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
229
|
+
"footerMenu": {
|
230
|
+
"color": "deepskyblue",
|
231
|
+
"dropdown": [{
|
232
|
+
"categoryName":"Cricket Posts",
|
233
|
+
"links": [
|
234
|
+
{
|
235
|
+
"name": "blog1",
|
236
|
+
"url":"/"
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"name": "blog2",
|
240
|
+
"url":"/"
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"name": "blog3",
|
244
|
+
"url":"/"
|
245
|
+
}
|
246
|
+
]
|
247
|
+
},
|
248
|
+
{
|
249
|
+
"categoryName":"Latest Posts",
|
250
|
+
"links": [
|
251
|
+
{
|
252
|
+
"name": "blog1",
|
253
|
+
"url":"/"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"name": "blog1",
|
257
|
+
"url":"/"
|
258
|
+
},
|
259
|
+
{
|
260
|
+
"name": "blog1",
|
261
|
+
"url":"/"
|
262
|
+
}
|
263
|
+
|
233
264
|
]
|
234
265
|
},
|
235
266
|
{
|
@@ -279,13 +310,11 @@ platforms:
|
|
279
310
|
"i": "fab fa-slack"
|
280
311
|
}
|
281
312
|
]
|
313
|
+
|
282
314
|
}
|
283
315
|
|
284
316
|
<!-- IF YOU WANT TO CHANGE COPYRIGHT TEXT THEN GO TO CONFIG.YML FILE AND EDIT COPYRIGHT TEXT VARIABLE -->
|
285
317
|
|
286
|
-
|
287
|
-
|
288
|
-
|
289
318
|
#### disquss comment system
|
290
319
|
|
291
320
|
sO, NOW YOU CAN DISQUSS COMMENT SYSTEM VERY EASILY IN YOUR PROJECT.
|
@@ -300,39 +329,22 @@ FOR EXAMPLE:
|
|
300
329
|
CONFIG.YML
|
301
330
|
|
302
331
|
disquss:
|
303
|
-
|
332
|
+
shortname: yourshortname
|
304
333
|
|
305
334
|
after that you can see that comment system added to your website.
|
306
335
|
|
307
|
-
|
308
336
|
## so now you can also change color of theme for ex:) footer color,socialicons,expore section etc. and also added google analtyics
|
309
337
|
|
310
|
-
you just need to put you google analatyics id in _config.yml
|
311
|
-
for example look like-
|
338
|
+
you just need to put you google analatyics id in \_config.yml
|
339
|
+
for example look like-
|
312
340
|
google_analytics: 'G-Your Id'
|
313
341
|
|
314
342
|
and also change the color in data driven files that we will provide in the top. now updated you can see that );;
|
315
343
|
|
316
|
-
|
317
344
|
## ENJOY THE BLOGGING THEME
|
318
345
|
|
319
|
-
|
320
|
-
|
321
346
|
## Theme Demo
|
347
|
+
|
322
348
|
## https://thefrondend.com/
|
323
349
|
|
324
350
|
## https://ultimateshyari.netlify.app/
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blogging-site-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- manpreet-singh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-06-
|
11
|
+
date: 2021-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -59,6 +59,7 @@ executables: []
|
|
59
59
|
extensions: []
|
60
60
|
extra_rdoc_files: []
|
61
61
|
files:
|
62
|
+
- _data/blog/alertbar.yml
|
62
63
|
- _data/blog/authors.yml
|
63
64
|
- _data/blog/blog.yml
|
64
65
|
- _data/blog/footer.json
|
@@ -73,6 +74,11 @@ files:
|
|
73
74
|
- _includes/google-analytics.html
|
74
75
|
- _includes/header/index.html
|
75
76
|
- _includes/header/nav-menu.html
|
77
|
+
- _includes/pages/about.html
|
78
|
+
- _includes/pages/contact.html
|
79
|
+
- _includes/pages/dd.html
|
80
|
+
- _includes/pages/pp.html
|
81
|
+
- _includes/pages/tnc.html
|
76
82
|
- _includes/pagination.html
|
77
83
|
- _includes/paginationPostPage.html
|
78
84
|
- _includes/postbox.html
|
@@ -86,6 +92,7 @@ files:
|
|
86
92
|
- _layouts/blog.html
|
87
93
|
- _layouts/categories.html
|
88
94
|
- _layouts/post.html
|
95
|
+
- _layouts/staticPages.html
|
89
96
|
- _sass/_main.scss
|
90
97
|
- _sass/theme/_blog.scss
|
91
98
|
- _sass/theme/_faq.scss
|
@@ -103,6 +110,7 @@ files:
|
|
103
110
|
- assets/images/manpreet.png
|
104
111
|
- assets/images/menu.png
|
105
112
|
- assets/images/ram.png
|
113
|
+
- assets/js/TopScroll.js
|
106
114
|
- assets/js/lazyload.js
|
107
115
|
- assets/js/lunr.js
|
108
116
|
- assets/js/lunrsearchengine.js
|