blogging-site-theme 0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/_data/blog/authors.yml +5 -0
- data/_data/blog/blog.yml +3 -0
- data/_data/blog/footer.json +86 -0
- data/_data/blog/nav.json +18 -0
- data/_data/blog/share.yml +28 -0
- data/_data/dataFiles/en/data.json +34 -0
- data/_data/theme/UI.json +3 -0
- data/_includes/author_bio.html +12 -0
- data/_includes/custom-head.html +55 -0
- data/_includes/disqus_comments.html +11 -0
- data/_includes/footer/index.html +51 -0
- data/_includes/google-analytics.html +8 -0
- data/_includes/header/index.html +10 -0
- data/_includes/header/nav-menu.html +37 -0
- data/_includes/pagination.html +36 -0
- data/_includes/paginationPostPage.html +18 -0
- data/_includes/postbox.html +31 -0
- data/_includes/scripts.html +2 -0
- data/_includes/search-lunr.html +11 -0
- data/_includes/section/alertbar.html +12 -0
- data/_includes/section/count.html +24 -0
- data/_includes/section/faq.html +32 -0
- data/_includes/section/recent_posts.html +42 -0
- data/_includes/section/related_post.html +55 -0
- data/_layouts/blog.html +75 -0
- data/_layouts/categories.html +25 -0
- data/_layouts/post.html +78 -0
- data/_sass/_main.scss +25 -0
- data/_sass/theme/_blog.scss +242 -0
- data/_sass/theme/_faq.scss +69 -0
- data/_sass/theme/_footer.scss +65 -0
- data/_sass/theme/_header.scss +184 -0
- data/_sass/theme/_pagination.scss +23 -0
- data/_sass/theme/pagination2.scss +36 -0
- data/assets/css/main.scss +7 -0
- data/assets/images/bebo-logo.svg +41 -0
- data/assets/images/bg.jpg +0 -0
- data/assets/images/blogger-logotype.svg +48 -0
- data/assets/images/cancel.png +0 -0
- data/assets/images/favicon-16x16.png +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/manpreet.png +0 -0
- data/assets/images/menu.png +0 -0
- data/assets/images/ram.png +0 -0
- data/assets/js/lazyload.js +258 -0
- data/assets/js/lunr.js +2977 -0
- data/assets/js/lunrsearchengine.js +89 -0
- data/assets/js/thefrontendworld.js +13 -0
- data/readme.md +338 -0
- metadata +134 -0
@@ -0,0 +1,89 @@
|
|
1
|
+
---
|
2
|
+
layout: null
|
3
|
+
sitemap: false
|
4
|
+
---
|
5
|
+
|
6
|
+
{% assign counter = 0 %}
|
7
|
+
var documents = [{% for page in site.pages %}{% if page.url contains '.xml' or page.url contains 'assets' or page.url contains 'category' or page.url contains 'tag' %}{% else %}{
|
8
|
+
"id": {{ counter }},
|
9
|
+
"url": "{{ site.url }}{{site.baseurl}}{{ page.url }}",
|
10
|
+
"title": "{{ page.title }}",
|
11
|
+
"body": "{{ page.content | markdownify | replace: '.', '. ' | replace: '</h2>', ': ' | replace: '</h3>', ': ' | replace: '</h4>', ': ' | replace: '</p>', ' ' | strip_html | strip_newlines | replace: ' ', ' ' | replace: '"', ' ' }}"{% assign counter = counter | plus: 1 %}
|
12
|
+
}, {% endif %}{% endfor %}{% for page in site.without-plugin %}{
|
13
|
+
"id": {{ counter }},
|
14
|
+
"url": "{{ site.url }}{{site.baseurl}}{{ page.url }}",
|
15
|
+
"title": "{{ page.title }}",
|
16
|
+
"body": "{{ page.content | markdownify | replace: '.', '. ' | replace: '</h2>', ': ' | replace: '</h3>', ': ' | replace: '</h4>', ': ' | replace: '</p>', ' ' | strip_html | strip_newlines | replace: ' ', ' ' | replace: '"', ' ' }}"{% assign counter = counter | plus: 1 %}
|
17
|
+
}, {% endfor %}{% for page in site.posts %}{
|
18
|
+
"id": {{ counter }},
|
19
|
+
"url": "{{ site.url }}{{site.baseurl}}{{ page.url }}",
|
20
|
+
"title": "{{ page.title }}",
|
21
|
+
"body": "{{ page.date | date: "%Y/%m/%d" }} - {{ page.content | markdownify | replace: '.', '. ' | replace: '</h2>', ': ' | replace: '</h3>', ': ' | replace: '</h4>', ': ' | replace: '</p>', ' ' | strip_html | strip_newlines | replace: ' ', ' ' | replace: '"', ' ' }}"{% assign counter = counter | plus: 1 %}
|
22
|
+
}{% if forloop.last %}{% else %}, {% endif %}{% endfor %}];
|
23
|
+
|
24
|
+
var idx = lunr(function () {
|
25
|
+
this.ref('id')
|
26
|
+
this.field('title')
|
27
|
+
this.field('body')
|
28
|
+
|
29
|
+
documents.forEach(function (doc) {
|
30
|
+
this.add(doc)
|
31
|
+
}, this)
|
32
|
+
});
|
33
|
+
function lunr_search(term) {
|
34
|
+
document.getElementById('lunrsearchresults').innerHTML = '<ul></ul>';
|
35
|
+
if(term) {
|
36
|
+
document.getElementById('lunrsearchresults').innerHTML = "<p>Search results for '" + term + "'</p>" + document.getElementById('lunrsearchresults').innerHTML;
|
37
|
+
//put results on the screen.
|
38
|
+
var results = idx.search(term);
|
39
|
+
if(results.length>0){
|
40
|
+
//console.log(idx.search(term));
|
41
|
+
//if results
|
42
|
+
for (var i = 0; i < results.length; i++) {
|
43
|
+
// more statements
|
44
|
+
var ref = results[i]['ref'];
|
45
|
+
var url = documents[ref]['url'];
|
46
|
+
var title = documents[ref]['title'];
|
47
|
+
var body = documents[ref]['body'].substring(0,160)+'...';
|
48
|
+
document.querySelectorAll('#lunrsearchresults ul')[0].innerHTML = document.querySelectorAll('#lunrsearchresults ul')[0].innerHTML + "<li class='lunrsearchresult'><a href='" + url + "'><span class='title'>" + title + "</span><br /><span class='body'>"+ body +"</span><br /><span class='url'>"+ url +"</span></a></li>";
|
49
|
+
}
|
50
|
+
} else {
|
51
|
+
document.querySelectorAll('#lunrsearchresults ul')[0].innerHTML = "<li class='lunrsearchresult'>No results found...</li>";
|
52
|
+
}
|
53
|
+
}
|
54
|
+
return false;
|
55
|
+
}
|
56
|
+
|
57
|
+
function lunr_search(term) {
|
58
|
+
$('#lunrsearchresults').show( 400 );
|
59
|
+
$( "body" ).addClass( "modal-open" );
|
60
|
+
|
61
|
+
document.getElementById('lunrsearchresults').innerHTML = '<div id="resultsmodal" class="modal fade show d-block" tabindex="-1" role="dialog" aria-labelledby="resultsmodal"> <div class="modal-dialog shadow-lg" role="document"> <div class="modal-content"> <div class="modal-header" id="modtit"> <button type="button" class="close" id="btnx" data-dismiss="modal" aria-label="Close"> × </button> </div> <div class="modal-body"> <ul class="mb-0"> </ul> </div> <div class="modal-footer"><button id="btnx" type="button" class="btn btn-danger btn-sm" data-dismiss="modal">Close</button></div></div> </div></div>';
|
62
|
+
if(term) {
|
63
|
+
document.getElementById('modtit').innerHTML = "<h5 class='modal-title'>Search results for '" + term + "'</h5>" + document.getElementById('modtit').innerHTML;
|
64
|
+
//put results on the screen.
|
65
|
+
var results = idx.search(term);
|
66
|
+
if(results.length>0){
|
67
|
+
//console.log(idx.search(term));
|
68
|
+
//if results
|
69
|
+
for (var i = 0; i < results.length; i++) {
|
70
|
+
// more statements
|
71
|
+
var ref = results[i]['ref'];
|
72
|
+
var url = documents[ref]['url'];
|
73
|
+
var title = documents[ref]['title'];
|
74
|
+
var body = documents[ref]['body'].substring(0,160)+'...';
|
75
|
+
document.querySelectorAll('#lunrsearchresults ul')[0].innerHTML = document.querySelectorAll('#lunrsearchresults ul')[0].innerHTML + "<li class='lunrsearchresult'><a href='" + url + "'><span class='title'>" + title + "</span><br /><small><span class='body'>"+ body +"</span><br /><span class='url'>"+ url +"</span></small></a></li>";
|
76
|
+
}
|
77
|
+
} else {
|
78
|
+
document.querySelectorAll('#lunrsearchresults ul')[0].innerHTML = "<li class='lunrsearchresult'>Sorry, no results found. Close & try a different search!</li>";
|
79
|
+
}
|
80
|
+
}
|
81
|
+
return false;
|
82
|
+
}
|
83
|
+
|
84
|
+
$(function() {
|
85
|
+
$("#lunrsearchresults").on('click', '#btnx', function () {
|
86
|
+
$('#lunrsearchresults').hide( 5 );
|
87
|
+
$( "body" ).removeClass( "modal-open" );
|
88
|
+
});
|
89
|
+
});
|
@@ -0,0 +1,13 @@
|
|
1
|
+
$(document).ready(function () {
|
2
|
+
console.log('connected')
|
3
|
+
|
4
|
+
const navbarToggler = $('.navbar-toggler')
|
5
|
+
const transformingBars = $('.transforming-bars')
|
6
|
+
const navbarCollapse = $('.navbar-collapse')
|
7
|
+
|
8
|
+
$(navbarToggler).click(function () {
|
9
|
+
$(transformingBars).toggleClass('barsActive')
|
10
|
+
$(navbarCollapse).toggleClass('activeNav')
|
11
|
+
$(navbarCollapse).css('width', '300px')
|
12
|
+
})
|
13
|
+
})
|
data/readme.md
ADDED
@@ -0,0 +1,338 @@
|
|
1
|
+
--------------------------------------
|
2
|
+
# BEST-BLOGGING-THEME
|
3
|
+
--------------------------------------
|
4
|
+
|
5
|
+
### THEME IMPORT GUIDE
|
6
|
+
|
7
|
+
------------------------------------------------
|
8
|
+
HOW TO IMPORT THIS THEME IN YOUR JEKYLL PROJECT.
|
9
|
+
------------------------------------------------
|
10
|
+
|
11
|
+
SO, Basically, we have very easy three steps to import theme in any Jekyll project.
|
12
|
+
|
13
|
+
STEP:1 Add this lines of code in YOUR Gemfile. (so just copy it and paste it on your gemfile)
|
14
|
+
|
15
|
+
GEMFILE ->
|
16
|
+
|
17
|
+
*******************************************************************************
|
18
|
+
source "https://rubygems.org"
|
19
|
+
|
20
|
+
gem "jekyll", "~> 3.9.0" // JEKYLL VERSION SHOULD BE SAME
|
21
|
+
|
22
|
+
gem 'best-blogging-theme', '~> 0.1.2' //THEME NAME SHOULD BE SAME, BUT VERSION WILL BE CHANGED AFTER LATEST UPDATE, SO PLEASE FOLLOW OUR RUBY GEMS: https://rubygems.org/gems/best-blogging-theme, WHERE YOU CAN CHECK IN WHICH LATEST VERSION RUNNING IN THE THEME.
|
23
|
+
|
24
|
+
gem "kramdown-parser-gfm" // THIS WILL BE SAME
|
25
|
+
|
26
|
+
FOLLOWING PLUGINS ARE ALSO REQUIRED:
|
27
|
+
|
28
|
+
group :jekyll_plugins do
|
29
|
+
gem "jekyll-feed"
|
30
|
+
gem "jekyll-sitemap"
|
31
|
+
gem "jekyll-include-cache"
|
32
|
+
gem 'jekyll-paginate'
|
33
|
+
end
|
34
|
+
******************************************************************************************
|
35
|
+
|
36
|
+
|
37
|
+
STEP: 2 Also add this line of code in _config.yml. (so just copy it and paste it on your _config.yml)
|
38
|
+
|
39
|
+
###### CONFIG.YML ->
|
40
|
+
permalink: /blog/:title // IF YOU ARE SERVE BLOG SITE LIKE, WWW.DOMAIN.COM THEN USE /title.
|
41
|
+
// BUT IF YOU ARE SERVE BLOG SITE LIKE, WWW.DOMAIN.COM/BLOG THEN USE SAME AS GIVEN PERMALINK: /blog/title.
|
42
|
+
|
43
|
+
paginate: '12' // BY DEFAULT 12 BLOG POST IN SINGLE PAGE, IF YOU WANT TO CHANGE THEN CHANGE ACCORDILY.
|
44
|
+
paginate_path: '/blog/page:num/' // PAGINATE-PATH DENOTE WHEN WE WENT ANOTHER BLOG PAGE, THOSE URL LIKE THAT, WWW.DOMAIN.COM/BLOG/PAGE1/, ALSO CAN CHANGE.
|
45
|
+
|
46
|
+
### Build settings
|
47
|
+
theme: best-blogging-theme //ENSURE THAT THEME NAME WILL BE SAME AS IN GEMFILE THEME NAME. IT IS MANDTARY ALSO IN CONFIG.YML FILE
|
48
|
+
markdown: kramdown // IT WILL BE SAME .
|
49
|
+
|
50
|
+
when you paste all these things in your files. after that open terminal and write command: bundle install
|
51
|
+
|
52
|
+
-----------------------------------------------------------------------------
|
53
|
+
ENSURE THAT, WHEN WE CHANGED THESE FILES. THEN WE NEED TO DELETE GEMFILE.LOCK
|
54
|
+
AFTER THAT, HIT BUNDLE INSTALL
|
55
|
+
PLEASE THIS WILL REQUIRED BEFORE HIT BUNDLE INSTALL.
|
56
|
+
-----------------------------------------------------------------------------
|
57
|
+
|
58
|
+
STEP: 3 SO, AFTER BUNDLE INSTALL
|
59
|
+
|
60
|
+
-----------------------------------------------------
|
61
|
+
ALL THE DEPENDENCY HAS BEEN INSTALLED IN YOUR PROJECT.
|
62
|
+
------------------------------------------------------
|
63
|
+
|
64
|
+
----------------------------------------------
|
65
|
+
SUCCESFULLY THEME IMPORTED NOW IN YOUR PROJECT.
|
66
|
+
----------------------------------------------
|
67
|
+
|
68
|
+
-----------------------------------------------------------------------------
|
69
|
+
|
70
|
+
### blog layout Import guide:
|
71
|
+
|
72
|
+
-------------------------------
|
73
|
+
How to use blog layout by theme
|
74
|
+
-------------------------------
|
75
|
+
|
76
|
+
Before blog layout use, I hope theme will be imported in your project successfully.
|
77
|
+
If not then GO TO TOP:
|
78
|
+
|
79
|
+
WE HAVE FOLLOWING TWO BLOG LAYOUTS:
|
80
|
+
|
81
|
+
#### 1. blog
|
82
|
+
#### 2. categories
|
83
|
+
|
84
|
+
*******************************
|
85
|
+
CREATE FILE FOR BLOG LAYOUT IN ROOT DIR:
|
86
|
+
OR ANYWHERE ITS DEPEND UPON YOU.
|
87
|
+
*********************************
|
88
|
+
|
89
|
+
#### FOR EXAMPLE:
|
90
|
+
|
91
|
+
#### index.html
|
92
|
+
//ensure that file extention will be .html, if .md then i am sure that you blog post pagination won't works.
|
93
|
+
|
94
|
+
---
|
95
|
+
layout: blog
|
96
|
+
title: BloggingSite //Title of blog
|
97
|
+
---
|
98
|
+
|
99
|
+
another example:
|
100
|
+
#### blog/index.html //inside blog folder
|
101
|
+
|
102
|
+
---
|
103
|
+
layout: blog
|
104
|
+
title: BloggingSite //Title of blog
|
105
|
+
---
|
106
|
+
|
107
|
+
*******************************
|
108
|
+
CREATE FILE FOR CATEGORIES LAYOUT IN ROOT DIR:
|
109
|
+
*********************************
|
110
|
+
|
111
|
+
#### FOR EXAMPLE
|
112
|
+
#### categories.md
|
113
|
+
---
|
114
|
+
layout: categories
|
115
|
+
title: BloggingSite Categories // TITLE OF BLOG Categories
|
116
|
+
permalink: /categories
|
117
|
+
---
|
118
|
+
|
119
|
+
#### IF YOU ARE USING BLOG LAYUT UNDER BLOG FOLDER
|
120
|
+
---
|
121
|
+
layout: categories
|
122
|
+
title: BloggingSite Categories // TITLE OF BLOG Categories
|
123
|
+
permalink: /blog/categories
|
124
|
+
---
|
125
|
+
|
126
|
+
|
127
|
+
#### Now, you can see blog layout is visible in your project.
|
128
|
+
|
129
|
+
THESE LAYOUTS DATA DRIVEN BY JSON DATA OR YML FILES, YOU IF YOU WANT CHANGE FOR EXAMPLE:
|
130
|
+
#### TITLE, META, NAVLINK, LOGO, BLOGTITLE, TAGLINE, FOOTERLINK ETC.
|
131
|
+
|
132
|
+
|
133
|
+
--------------------------------------------------------------------------
|
134
|
+
#### CREATE blog(folder) in _data(dir), for ex:) _data/blog
|
135
|
+
|
136
|
+
UNDER THESE FOLLOWING JSON OR YML FILES. YOU CAN CHANGE DATA ACOORDING ON YOUR PROJECT.
|
137
|
+
|
138
|
+
#### 1. authors.yml
|
139
|
+
#### 2. blog.yml
|
140
|
+
#### 3. nav.json
|
141
|
+
#### 4. share.yml
|
142
|
+
#### 5. footer.json
|
143
|
+
#### 6. disquss comment system
|
144
|
+
|
145
|
+
#### authors.yml // BLOG POST AUTHOR CAN CHANGE HERE.
|
146
|
+
|
147
|
+
Manpreet:
|
148
|
+
name: Manpreet singh
|
149
|
+
image: /assets/images/manpreet.png
|
150
|
+
bio: Author4 of Mediumish, a Bootstrap Medium styled template available for WordPress, HTML, Ghost and Jekyll. You are currently previewing Jekyll template demo.
|
151
|
+
twitter: https://twitter.com/home
|
152
|
+
|
153
|
+
#### blog.yml //CHANGE H1 OR TAGLING OF BLOG
|
154
|
+
---
|
155
|
+
h1: Latest Posts from our Blog
|
156
|
+
tagline: Best Blogging Site
|
157
|
+
|
158
|
+
---
|
159
|
+
// REMOVE --- END OF THE LINE, ITS NOT REQUIRED.
|
160
|
+
|
161
|
+
#### nav.json // NAVLINK CAN BE CHANGE .
|
162
|
+
{
|
163
|
+
"navbarBrandText": "", //NAVTEXT LIKE "bloggingsite"
|
164
|
+
"navbarBrandLogo": "/assets/images/bebo-logo.svg", //LOGO
|
165
|
+
"navItems":[
|
166
|
+
{
|
167
|
+
"name":"home", //navlinks
|
168
|
+
"url":"/home" // navurl
|
169
|
+
},
|
170
|
+
{
|
171
|
+
"name":"blog",
|
172
|
+
"url":"/blog"
|
173
|
+
}
|
174
|
+
]
|
175
|
+
}
|
176
|
+
|
177
|
+
you can add nav links according to your requirements.
|
178
|
+
|
179
|
+
#### share.yml //if you want change sharing handle then you can
|
180
|
+
#### Sharing options at the bottom of the post.
|
181
|
+
#### Icons from <https://fontawesome.com/>
|
182
|
+
|
183
|
+
label: 'Share'
|
184
|
+
platforms:
|
185
|
+
- type: Twitter
|
186
|
+
icon: 'fab fa-twitter'
|
187
|
+
link: 'https://twitter.com/intent/tweet?url=URL'
|
188
|
+
- type: Facebook
|
189
|
+
icon: 'fab fa-facebook-square'
|
190
|
+
link: 'https://www.facebook.com/sharer/sharer.php?u=URL'
|
191
|
+
- type: Linkedin
|
192
|
+
icon: 'fab fa-linkedin'
|
193
|
+
link: 'https://www.linkedin.com/sharing/share-offsite/?url=URL'
|
194
|
+
|
195
|
+
|
196
|
+
#### footer.json
|
197
|
+
{
|
198
|
+
"footerMenu": {
|
199
|
+
"color": "deepskyblue",
|
200
|
+
"dropdown": [{
|
201
|
+
"categoryName":"Cricket Posts",
|
202
|
+
"links": [
|
203
|
+
{
|
204
|
+
"name": "blog1",
|
205
|
+
"url":"/"
|
206
|
+
},
|
207
|
+
{
|
208
|
+
"name": "blog2",
|
209
|
+
"url":"/"
|
210
|
+
},
|
211
|
+
{
|
212
|
+
"name": "blog3",
|
213
|
+
"url":"/"
|
214
|
+
}
|
215
|
+
]
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"categoryName":"Latest Posts",
|
219
|
+
"links": [
|
220
|
+
{
|
221
|
+
"name": "blog1",
|
222
|
+
"url":"/"
|
223
|
+
},
|
224
|
+
{
|
225
|
+
"name": "blog1",
|
226
|
+
"url":"/"
|
227
|
+
},
|
228
|
+
{
|
229
|
+
"name": "blog1",
|
230
|
+
"url":"/"
|
231
|
+
}
|
232
|
+
|
233
|
+
]
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"categoryName":"Website Name",
|
237
|
+
"links": [
|
238
|
+
{
|
239
|
+
"name": "Terms and conditions",
|
240
|
+
"url":"/"
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"name": "Privacy Policy",
|
244
|
+
"url":"/"
|
245
|
+
},
|
246
|
+
{
|
247
|
+
"name": "Disclaimer",
|
248
|
+
"url":"/"
|
249
|
+
}
|
250
|
+
]
|
251
|
+
}
|
252
|
+
]
|
253
|
+
},
|
254
|
+
|
255
|
+
"socialIcon":[
|
256
|
+
{
|
257
|
+
"target": "_blank",
|
258
|
+
"href": "https://www.facebook.com/",
|
259
|
+
"i": "fab fa-facebook-square"
|
260
|
+
},
|
261
|
+
{
|
262
|
+
"target": "_blank",
|
263
|
+
"href": "https://twitter.com/",
|
264
|
+
"i": "fab fa-twitter-square"
|
265
|
+
},
|
266
|
+
{
|
267
|
+
"target": "_blank",
|
268
|
+
"href": "https://www.linkedin.com/",
|
269
|
+
"i": "fab fa-linkedin-in"
|
270
|
+
},
|
271
|
+
{
|
272
|
+
"target": "_blank",
|
273
|
+
"href": "https://github.com/",
|
274
|
+
"i": "fab fa-github"
|
275
|
+
},
|
276
|
+
{
|
277
|
+
"target": "_blank",
|
278
|
+
"href": "https://slack.com/intl/en-in/",
|
279
|
+
"i": "fab fa-slack"
|
280
|
+
}
|
281
|
+
]
|
282
|
+
}
|
283
|
+
|
284
|
+
<!-- IF YOU WANT TO CHANGE COPYRIGHT TEXT THEN GO TO CONFIG.YML FILE AND EDIT COPYRIGHT TEXT VARIABLE -->
|
285
|
+
|
286
|
+
|
287
|
+
|
288
|
+
|
289
|
+
#### disquss comment system
|
290
|
+
|
291
|
+
sO, NOW YOU CAN DISQUSS COMMENT SYSTEM VERY EASILY IN YOUR PROJECT.
|
292
|
+
FIRST, YOU NEED TO CREATE ACCOUNT ON DISQUSS LINK: https://disqus.com/
|
293
|
+
AFTER THAT, CREATE ACCOUNT AND SETUP COMMENT SYSTEM FOR WEBSITE.
|
294
|
+
|
295
|
+
AFTER, CREATING ACCOUNT FOR WEBSITE, DISQUSS GIVE YOU SHORTNAME : FOR EXAMPLE : MYSITE
|
296
|
+
|
297
|
+
JUST COPY THAT SHORTNAME AND PASTE IT IN CONFIG.YML.
|
298
|
+
FOR EXAMPLE:
|
299
|
+
|
300
|
+
CONFIG.YML
|
301
|
+
|
302
|
+
disquss:
|
303
|
+
shortname: yourshortname
|
304
|
+
|
305
|
+
after that you can see that comment system added to your website.
|
306
|
+
|
307
|
+
|
308
|
+
## so now you can also change color of theme for ex:) footer color,socialicons,expore section etc. and also added google analtyics
|
309
|
+
|
310
|
+
you just need to put you google analatyics id in _config.yml
|
311
|
+
for example look like-
|
312
|
+
google_analytics: 'G-Your Id'
|
313
|
+
|
314
|
+
and also change the color in data driven files that we will provide in the top. now updated you can see that );;
|
315
|
+
|
316
|
+
|
317
|
+
## ENJOY THE BLOGGING THEME
|
318
|
+
|
319
|
+
|
320
|
+
|
321
|
+
## Theme Demo
|
322
|
+
## https://thefrondend.com/
|
323
|
+
|
324
|
+
## https://ultimateshyari.netlify.app/
|
325
|
+
|
326
|
+
|
327
|
+
|
328
|
+
|
329
|
+
|
330
|
+
|
331
|
+
|
332
|
+
|
333
|
+
|
334
|
+
|
335
|
+
|
336
|
+
|
337
|
+
|
338
|
+
|
metadata
ADDED
@@ -0,0 +1,134 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: blogging-site-theme
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: '0.1'
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- manpreet-singh
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-06-06 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.9'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.9'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '12.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '12.0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- ms4110415@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- _data/blog/authors.yml
|
63
|
+
- _data/blog/blog.yml
|
64
|
+
- _data/blog/footer.json
|
65
|
+
- _data/blog/nav.json
|
66
|
+
- _data/blog/share.yml
|
67
|
+
- _data/dataFiles/en/data.json
|
68
|
+
- _data/theme/UI.json
|
69
|
+
- _includes/author_bio.html
|
70
|
+
- _includes/custom-head.html
|
71
|
+
- _includes/disqus_comments.html
|
72
|
+
- _includes/footer/index.html
|
73
|
+
- _includes/google-analytics.html
|
74
|
+
- _includes/header/index.html
|
75
|
+
- _includes/header/nav-menu.html
|
76
|
+
- _includes/pagination.html
|
77
|
+
- _includes/paginationPostPage.html
|
78
|
+
- _includes/postbox.html
|
79
|
+
- _includes/scripts.html
|
80
|
+
- _includes/search-lunr.html
|
81
|
+
- _includes/section/alertbar.html
|
82
|
+
- _includes/section/count.html
|
83
|
+
- _includes/section/faq.html
|
84
|
+
- _includes/section/recent_posts.html
|
85
|
+
- _includes/section/related_post.html
|
86
|
+
- _layouts/blog.html
|
87
|
+
- _layouts/categories.html
|
88
|
+
- _layouts/post.html
|
89
|
+
- _sass/_main.scss
|
90
|
+
- _sass/theme/_blog.scss
|
91
|
+
- _sass/theme/_faq.scss
|
92
|
+
- _sass/theme/_footer.scss
|
93
|
+
- _sass/theme/_header.scss
|
94
|
+
- _sass/theme/_pagination.scss
|
95
|
+
- _sass/theme/pagination2.scss
|
96
|
+
- assets/css/main.scss
|
97
|
+
- assets/images/bebo-logo.svg
|
98
|
+
- assets/images/bg.jpg
|
99
|
+
- assets/images/blogger-logotype.svg
|
100
|
+
- assets/images/cancel.png
|
101
|
+
- assets/images/favicon-16x16.png
|
102
|
+
- assets/images/favicon.ico
|
103
|
+
- assets/images/manpreet.png
|
104
|
+
- assets/images/menu.png
|
105
|
+
- assets/images/ram.png
|
106
|
+
- assets/js/lazyload.js
|
107
|
+
- assets/js/lunr.js
|
108
|
+
- assets/js/lunrsearchengine.js
|
109
|
+
- assets/js/thefrontendworld.js
|
110
|
+
- readme.md
|
111
|
+
homepage: https://github.com/ManpreetChoudhary/Blogging-Theme
|
112
|
+
licenses:
|
113
|
+
- MIT
|
114
|
+
metadata: {}
|
115
|
+
post_install_message:
|
116
|
+
rdoc_options: []
|
117
|
+
require_paths:
|
118
|
+
- lib
|
119
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - ">="
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: '0'
|
124
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
125
|
+
requirements:
|
126
|
+
- - ">="
|
127
|
+
- !ruby/object:Gem::Version
|
128
|
+
version: '0'
|
129
|
+
requirements: []
|
130
|
+
rubygems_version: 3.1.2
|
131
|
+
signing_key:
|
132
|
+
specification_version: 4
|
133
|
+
summary: You can easily import and use Blog theme in your projects.
|
134
|
+
test_files: []
|