jekyll-bhautiki 0.1.3 → 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/README.md +21 -7
- data/_config.yml +3 -1
- data/_data/assets.yml +0 -4
- data/_data/language.yml +123 -0
- data/_data/messages.yml +2 -2
- data/_data/socials.yml +11 -7
- data/_includes/head.html +2 -0
- data/_includes/home/overview.html +3 -3
- data/_includes/post/title.html +4 -0
- data/_layouts/home.html +52 -6
- data/_sass/common/feather.sass +3 -0
- data/_sass/common/mode.sass +5 -3
- data/_sass/common/nav.sass +1 -1
- data/_sass/layouts/categories.sass +1 -1
- data/_sass/layouts/default.sass +7 -0
- data/_sass/main.sass +3 -1
- data/assets/external/pygments/css/default.sass +198 -0
- data/assets/external/pygments/css/monokai.sass +168 -0
- data/assets/img/bhautiki-samay.gif +0 -0
- metadata +5 -4
- data/assets/external/pygments/css/default.css +0 -75
- data/assets/external/pygments/css/monokai.css +0 -85
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7514ddcbddfaed6837ff07a61200012498674acb4e8baa7ee16010b924655308
|
4
|
+
data.tar.gz: fd893bd332297ae9ae3dd614615e54805329d9ab71f653d255f19c0beb759125
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9d9cc285a2cf59c4dcfe4e05643d175795ab6655c91a7db009b7827f5eb8fb43db82311b728563f6ead05300622fdcebcdea84f5d20599e0e6a96e95122bced
|
7
|
+
data.tar.gz: 9fa0b6484289f9a288bc0855e4dc91563f335d9607bcb3d8735b52746a11ad7c00d1645ff8e05bc3d13eb91abb2bd3d93f827660f36b7d910072d4f17f75a128
|
data/README.md
CHANGED
@@ -4,11 +4,18 @@ Physics inspired feature-rich Jekyll theme with math support.
|
|
4
4
|
|
5
5
|
[![Gem Version](https://badge.fury.io/rb/jekyll-bhautiki.svg)](https://badge.fury.io/rb/jekyll-bhautiki)
|
6
6
|
|
7
|
-
[![Demo](https://i.ibb.co/
|
7
|
+
[![Demo](https://i.ibb.co/rM2DSYT/jekyll-bhautiki.png)](https://ibb.co/q9YTfKX)
|
8
8
|
|
9
|
-
|
9
|
+
## Usage
|
10
10
|
|
11
|
-
|
11
|
+
This theme was developed for personal use.
|
12
|
+
|
13
|
+
- Site data in [_data](/_data/).
|
14
|
+
- Posts in [_posts](/_posts/).
|
15
|
+
|
16
|
+
Attribution will be appreciated, always :grin:.
|
17
|
+
|
18
|
+
## Development and Maintenance
|
12
19
|
|
13
20
|
[Docs](/docs/) for more details.
|
14
21
|
|
@@ -20,7 +27,7 @@ Standard jekyll structure.
|
|
20
27
|
- Components in [_includes](/_includes/).
|
21
28
|
- Images, Packages, Scripts in [assets](/assets/).
|
22
29
|
- Stylesheet in [_sass](/_sass/).
|
23
|
-
- Other scripts in [
|
30
|
+
- Other scripts in [_scripts](/_scripts/).
|
24
31
|
|
25
32
|
The scripts are bundled by `parcel`.
|
26
33
|
|
@@ -71,7 +78,7 @@ Easy feature integration.
|
|
71
78
|
- [Feather](https://feathericons.com/)
|
72
79
|
- [Foundation](https://get.foundation/)
|
73
80
|
- [MathJax](https://www.mathjax.org/)
|
74
|
-
- [
|
81
|
+
- [TocBot](https://tscanlin.github.io/tocbot/)
|
75
82
|
|
76
83
|
TODO
|
77
84
|
|
@@ -114,11 +121,16 @@ Space (dark) and Vintage Notebook (multicolor).
|
|
114
121
|
|
115
122
|
English (India/UK) is the default.
|
116
123
|
|
117
|
-
- Language Support:
|
124
|
+
- Indian Language Support:
|
118
125
|
- [ ] Hindi
|
119
126
|
- [ ] Marathi
|
120
127
|
- [ ] Telugu
|
121
|
-
- [ ]
|
128
|
+
- [ ] Kannada
|
129
|
+
- [ ] . . .
|
130
|
+
|
131
|
+
- Foreign Language Support:
|
132
|
+
- [ ] French
|
133
|
+
- [ ] . . .
|
122
134
|
|
123
135
|
Syntax highlighting is performed by [rouge](https://github.com/rouge-ruby/rouge). Visit [Pygments](https://pygments.org/styles/) for available styles.
|
124
136
|
|
@@ -131,4 +143,6 @@ export pygments_dir=assets/external/pygments/css/
|
|
131
143
|
mkdir -p $pygments_dir
|
132
144
|
pygmentize -f html -S $style -a .highlight > $pygments_dir$style.css
|
133
145
|
|
146
|
+
# TODO: convert to sass.
|
147
|
+
|
134
148
|
```
|
data/_config.yml
CHANGED
@@ -46,6 +46,8 @@ author:
|
|
46
46
|
username: ""
|
47
47
|
goodreads:
|
48
48
|
username: ""
|
49
|
+
youtube:
|
50
|
+
username: ""
|
49
51
|
|
50
52
|
# Build settings
|
51
53
|
# theme: jekyll-bhautiki
|
@@ -60,7 +62,7 @@ analytics:
|
|
60
62
|
|
61
63
|
# Language
|
62
64
|
lang: eng
|
63
|
-
# langs = [eng, fre, hin, mar, tel, bho] # TODO: add language support
|
65
|
+
# langs = [eng, fre, hin, mar, kna, tel, bho] # TODO: add language support
|
64
66
|
# ISO 639.2 standard:
|
65
67
|
# https://www.loc.gov/standards/iso639-2/php/code_list.php
|
66
68
|
|
data/_data/assets.yml
CHANGED
data/_data/language.yml
ADDED
@@ -0,0 +1,123 @@
|
|
1
|
+
eng:
|
2
|
+
title:
|
3
|
+
label:
|
4
|
+
|
5
|
+
home:
|
6
|
+
label:
|
7
|
+
url:
|
8
|
+
|
9
|
+
about:
|
10
|
+
label:
|
11
|
+
url:
|
12
|
+
|
13
|
+
archive:
|
14
|
+
label:
|
15
|
+
url:
|
16
|
+
|
17
|
+
categories:
|
18
|
+
label:
|
19
|
+
url:
|
20
|
+
|
21
|
+
hin:
|
22
|
+
title:
|
23
|
+
label:
|
24
|
+
|
25
|
+
home:
|
26
|
+
label:
|
27
|
+
url:
|
28
|
+
|
29
|
+
about:
|
30
|
+
label:
|
31
|
+
url:
|
32
|
+
|
33
|
+
archive:
|
34
|
+
label:
|
35
|
+
url:
|
36
|
+
|
37
|
+
categories:
|
38
|
+
label:
|
39
|
+
url:
|
40
|
+
|
41
|
+
mar:
|
42
|
+
title:
|
43
|
+
label:
|
44
|
+
|
45
|
+
home:
|
46
|
+
label:
|
47
|
+
url:
|
48
|
+
|
49
|
+
about:
|
50
|
+
label:
|
51
|
+
url:
|
52
|
+
|
53
|
+
archive:
|
54
|
+
label:
|
55
|
+
url:
|
56
|
+
|
57
|
+
categories:
|
58
|
+
label:
|
59
|
+
url:
|
60
|
+
|
61
|
+
tel:
|
62
|
+
title:
|
63
|
+
label:
|
64
|
+
|
65
|
+
home:
|
66
|
+
label:
|
67
|
+
url:
|
68
|
+
|
69
|
+
about:
|
70
|
+
label:
|
71
|
+
url:
|
72
|
+
|
73
|
+
archive:
|
74
|
+
label:
|
75
|
+
url:
|
76
|
+
|
77
|
+
categories:
|
78
|
+
label:
|
79
|
+
url:
|
80
|
+
|
81
|
+
kan:
|
82
|
+
title:
|
83
|
+
label:
|
84
|
+
|
85
|
+
home:
|
86
|
+
label:
|
87
|
+
url:
|
88
|
+
|
89
|
+
about:
|
90
|
+
label:
|
91
|
+
url:
|
92
|
+
|
93
|
+
archive:
|
94
|
+
label:
|
95
|
+
url:
|
96
|
+
|
97
|
+
categories:
|
98
|
+
label:
|
99
|
+
url:
|
100
|
+
|
101
|
+
# Other Indian Languages
|
102
|
+
|
103
|
+
fra:
|
104
|
+
title:
|
105
|
+
label:
|
106
|
+
|
107
|
+
home:
|
108
|
+
label:
|
109
|
+
url:
|
110
|
+
|
111
|
+
about:
|
112
|
+
label:
|
113
|
+
url:
|
114
|
+
|
115
|
+
archive:
|
116
|
+
label:
|
117
|
+
url:
|
118
|
+
|
119
|
+
categories:
|
120
|
+
label:
|
121
|
+
url:
|
122
|
+
|
123
|
+
# Other Foreign Languages
|
data/_data/messages.yml
CHANGED
@@ -10,9 +10,9 @@ toc:
|
|
10
10
|
|
11
11
|
overview:
|
12
12
|
text: >
|
13
|
-
Hi, I am a funky theme created out of boredom to enable child-like creaters,
|
13
|
+
Hi, I am a funky theme created out of vacation boredom to enable child-like creaters,
|
14
14
|
makers and engineering enthusiasts to share their thoughts on their favourite
|
15
15
|
subjects: whether it be Cosmology, Quantum Mechanics or Category Theory.
|
16
16
|
So, fork me and feel free to add your intellectual excursions to present it to everyone.
|
17
|
-
|
17
|
+
Perhaps you know something that few others know, and only time will tell
|
18
18
|
if your amazing discovery is indeed something that can rattle the scientific world.
|
data/_data/socials.yml
CHANGED
@@ -1,31 +1,35 @@
|
|
1
1
|
twitter:
|
2
|
-
url: https://www.twitter.com
|
2
|
+
url: https://www.twitter.com/
|
3
3
|
icon: twitter
|
4
4
|
|
5
5
|
github:
|
6
|
-
url: https://www.github.com
|
6
|
+
url: https://www.github.com/
|
7
7
|
icon: github
|
8
8
|
|
9
9
|
linkedin:
|
10
|
-
url: https://www.linkedin.com/in
|
10
|
+
url: https://www.linkedin.com/in/
|
11
11
|
icon: linkedin
|
12
12
|
|
13
13
|
facebook:
|
14
|
-
url: https://www.facebook.com
|
14
|
+
url: https://www.facebook.com/
|
15
15
|
icon: facebook
|
16
16
|
|
17
17
|
instagram:
|
18
|
-
url: https://www.instagram.com
|
18
|
+
url: https://www.instagram.com/
|
19
19
|
icon: instagram
|
20
20
|
|
21
21
|
twitch:
|
22
|
-
url: https://www.twitch.com
|
22
|
+
url: https://www.twitch.com/
|
23
23
|
icon: twitch
|
24
24
|
|
25
25
|
goodreads:
|
26
26
|
url: https://www.goodreads.com/
|
27
27
|
icon: book
|
28
28
|
|
29
|
-
|
29
|
+
youtube:
|
30
|
+
url: https://www.youtube.com/@
|
31
|
+
icon: youtube
|
32
|
+
|
33
|
+
email:
|
30
34
|
url: mailto
|
31
35
|
icon: mail
|
data/_includes/head.html
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
{% if site.author.socials[name].username %}
|
22
22
|
<li>
|
23
|
-
<a href="{{ site.data.socials[name].url
|
23
|
+
<a href="{{ site.data.socials[name].url | append: site.author.socials[name].username }}" target="_blank">
|
24
24
|
<i data-feather="{{ site.data.socials[name].icon }}"></i>
|
25
25
|
</a>
|
26
26
|
</li>
|
@@ -29,8 +29,8 @@
|
|
29
29
|
|
30
30
|
{% if site.author.email %}
|
31
31
|
<li>
|
32
|
-
<a href="{{ site.data.socials.
|
33
|
-
<i data-feather="{{ site.data.socials.
|
32
|
+
<a href="{{ site.data.socials.email.url | append: ':' | append: site.author.email }}" crossorigin="anonymous" target="_blank">
|
33
|
+
<i data-feather="{{ site.data.socials.email.icon }}"></i>
|
34
34
|
</a>
|
35
35
|
</li>
|
36
36
|
{% endif %}
|
data/_includes/post/title.html
CHANGED
data/_layouts/home.html
CHANGED
@@ -4,7 +4,37 @@ layout: default
|
|
4
4
|
|
5
5
|
<div class="grid-container">
|
6
6
|
<div class="grid-x grid-margin-x small-up-1 large-up-2">
|
7
|
-
|
7
|
+
{% assign drafts = site.posts | where: "draft", true %}
|
8
|
+
|
9
|
+
{% assign count = site.posts.size | minus: drafts.size %}
|
10
|
+
{% assign rest_with_favourites = site.posts | sort: "draft" | slice: 0, count %}
|
11
|
+
|
12
|
+
{% assign favourites = rest_with_favourites | where: "favourite", true %}
|
13
|
+
|
14
|
+
{% assign count = rest_with_favourites.size | minus: favourites.size %}
|
15
|
+
{% assign rest = rest_with_favourites | sort: "favourite" | slice: 0, count %}
|
16
|
+
|
17
|
+
{% assign posts = favourites | concat: rest | concat: drafts %}
|
18
|
+
|
19
|
+
{% assign type = nil %}
|
20
|
+
{% assign iteration = 0 %}
|
21
|
+
|
22
|
+
{% for post in posts %}
|
23
|
+
{% assign odd = iteration | modulo: 2 %}
|
24
|
+
|
25
|
+
{% if post.draft %}
|
26
|
+
{% assign current_type = "draft" %}
|
27
|
+
{% elsif post.favourite %}
|
28
|
+
{% assign current_type = "favourite" %}
|
29
|
+
{% else %}
|
30
|
+
{% assign current_type = nil %}
|
31
|
+
{% endif %}
|
32
|
+
|
33
|
+
{% if type != current_type and odd == 1 %}
|
34
|
+
{% assign iteration = iteration | plus: 1 %}
|
35
|
+
<div class="cell"></div>
|
36
|
+
{% endif %}
|
37
|
+
|
8
38
|
<div class="cell">
|
9
39
|
<a href="{{ post.url | prepend: site_baseurl }}">
|
10
40
|
<div class="card">
|
@@ -13,21 +43,37 @@ layout: default
|
|
13
43
|
</div>
|
14
44
|
|
15
45
|
<div class="card-section">
|
16
|
-
<p>{{ post.description }}</p>
|
46
|
+
<p>{{ post.description | truncate: 256 }}</p>
|
17
47
|
</div>
|
18
48
|
|
19
|
-
<div class="card-section
|
20
|
-
<small
|
49
|
+
<div class="card-section">
|
50
|
+
<small class="float-left">
|
51
|
+
{% if post.favourite %}
|
52
|
+
<i data-feather="star"></i> Favourite
|
53
|
+
{% endif %}
|
54
|
+
|
55
|
+
{% if post.draft %}
|
56
|
+
<i data-feather="edit-2"></i> Draft
|
57
|
+
{% endif %}
|
58
|
+
</small>
|
59
|
+
|
60
|
+
|
61
|
+
<small class="float-right">
|
62
|
+
{{ post.date | date: "%d %B %Y" }}
|
63
|
+
</small>
|
21
64
|
</div>
|
22
65
|
|
23
66
|
{% if post.image %}
|
24
67
|
{% assign src = post.image.path | default: post.image %}
|
25
68
|
{% assign alt = post.image.description | default: "Preview" %}
|
26
|
-
<!-- add image tag -->
|
27
69
|
{% endif %}
|
70
|
+
<!-- add image tag -->
|
28
71
|
</div>
|
29
72
|
</a>
|
30
73
|
</div>
|
31
|
-
|
74
|
+
|
75
|
+
{% assign type = current_type %}
|
76
|
+
{% assign iteration = iteration | plus: 1 %}
|
77
|
+
{% endfor %}
|
32
78
|
</div>
|
33
79
|
</div>
|
data/_sass/common/feather.sass
CHANGED
data/_sass/common/mode.sass
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
|
1
2
|
@mixin light-mode
|
2
3
|
--color: #06080F
|
3
4
|
--background: rgb(245, 245, 220) url('/assets/external/img/textured-paper.png')
|
@@ -11,7 +12,7 @@
|
|
11
12
|
|
12
13
|
--bar-link-color: #C04000
|
13
14
|
--quote-color: #00008B
|
14
|
-
|
15
|
+
|
15
16
|
|
16
17
|
@mixin dark-mode
|
17
18
|
--color: #fff
|
@@ -30,9 +31,11 @@
|
|
30
31
|
|
31
32
|
html, html[data-theme="light"]
|
32
33
|
@include light-mode
|
34
|
+
@import '../../assets/external/pygments/css/default'
|
33
35
|
|
34
36
|
html[data-theme="dark"]
|
35
37
|
@include dark-mode
|
38
|
+
@import '../../assets/external/pygments/css/monokai'
|
36
39
|
|
37
40
|
@media (prefers-color-scheme: dark)
|
38
41
|
html, html[data-theme="dark"]
|
@@ -52,10 +55,9 @@ html[data-theme="dark"]
|
|
52
55
|
.feather
|
53
56
|
color: var(--color)
|
54
57
|
|
55
|
-
code
|
58
|
+
code
|
56
59
|
font-family: monospace
|
57
60
|
font-weight: 500
|
58
|
-
font-size: small
|
59
61
|
|
60
62
|
.card
|
61
63
|
background: linear-gradient(to bottom, var(--header-background), var(--content-background))
|
data/_sass/common/nav.sass
CHANGED
data/_sass/layouts/default.sass
CHANGED
data/_sass/main.sass
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
+
// Import all variables. Must be on top.
|
1
2
|
@import 'common/variables'
|
3
|
+
|
2
4
|
@import 'common/nav'
|
3
5
|
@import 'common/feather'
|
4
6
|
@import 'common/side'
|
5
7
|
@import 'common/syntax'
|
6
8
|
@import 'layouts/categories'
|
7
|
-
@import 'common/mode'
|
8
9
|
@import 'layouts/default'
|
10
|
+
@import 'common/mode'
|
@@ -0,0 +1,198 @@
|
|
1
|
+
pre
|
2
|
+
line-height: 125%
|
3
|
+
|
4
|
+
td.linenos .normal, span.linenos
|
5
|
+
color: inherit
|
6
|
+
background-color: transparent
|
7
|
+
padding-left: 5px
|
8
|
+
padding-right: 5px
|
9
|
+
|
10
|
+
td.linenos .special, span.linenos.special
|
11
|
+
color: #000000
|
12
|
+
background-color: #ffffc0
|
13
|
+
padding-left: 5px
|
14
|
+
padding-right: 5px
|
15
|
+
|
16
|
+
.highlight
|
17
|
+
.hll
|
18
|
+
background-color: #ffffcc
|
19
|
+
|
20
|
+
background: #f8f8f8
|
21
|
+
|
22
|
+
.c
|
23
|
+
color: #3D7B7B
|
24
|
+
font-style: italic
|
25
|
+
|
26
|
+
.err
|
27
|
+
border: 1px solid #FF0000
|
28
|
+
|
29
|
+
.k
|
30
|
+
color: #008000
|
31
|
+
font-weight: bold
|
32
|
+
|
33
|
+
.o
|
34
|
+
color: #666666
|
35
|
+
|
36
|
+
.ch, .cm
|
37
|
+
color: #3D7B7B
|
38
|
+
font-style: italic
|
39
|
+
|
40
|
+
.cp
|
41
|
+
color: #9C6500
|
42
|
+
|
43
|
+
.cpf, .c1, .cs
|
44
|
+
color: #3D7B7B
|
45
|
+
font-style: italic
|
46
|
+
|
47
|
+
.gd
|
48
|
+
color: #A00000
|
49
|
+
|
50
|
+
.ge
|
51
|
+
font-style: italic
|
52
|
+
|
53
|
+
.ges
|
54
|
+
font-weight: bold
|
55
|
+
font-style: italic
|
56
|
+
|
57
|
+
.gr
|
58
|
+
color: #E40000
|
59
|
+
|
60
|
+
.gh
|
61
|
+
color: #000080
|
62
|
+
font-weight: bold
|
63
|
+
|
64
|
+
.gi
|
65
|
+
color: #008400
|
66
|
+
|
67
|
+
.go
|
68
|
+
color: #717171
|
69
|
+
|
70
|
+
.gp
|
71
|
+
color: #000080
|
72
|
+
font-weight: bold
|
73
|
+
|
74
|
+
.gs
|
75
|
+
font-weight: bold
|
76
|
+
|
77
|
+
.gu
|
78
|
+
color: #800080
|
79
|
+
font-weight: bold
|
80
|
+
|
81
|
+
.gt
|
82
|
+
color: #0044DD
|
83
|
+
|
84
|
+
.kc, .kd, .kn
|
85
|
+
color: #008000
|
86
|
+
font-weight: bold
|
87
|
+
|
88
|
+
.kp
|
89
|
+
color: #008000
|
90
|
+
|
91
|
+
.kr
|
92
|
+
color: #008000
|
93
|
+
font-weight: bold
|
94
|
+
|
95
|
+
.kt
|
96
|
+
color: #B00040
|
97
|
+
|
98
|
+
.m
|
99
|
+
color: #666666
|
100
|
+
|
101
|
+
.s
|
102
|
+
color: #BA2121
|
103
|
+
|
104
|
+
.na
|
105
|
+
color: #687822
|
106
|
+
|
107
|
+
.nb
|
108
|
+
color: #008000
|
109
|
+
|
110
|
+
.nc
|
111
|
+
color: #0000FF
|
112
|
+
font-weight: bold
|
113
|
+
|
114
|
+
.no
|
115
|
+
color: #880000
|
116
|
+
|
117
|
+
.nd
|
118
|
+
color: #AA22FF
|
119
|
+
|
120
|
+
.ni
|
121
|
+
color: #717171
|
122
|
+
font-weight: bold
|
123
|
+
|
124
|
+
.ne
|
125
|
+
color: #CB3F38
|
126
|
+
font-weight: bold
|
127
|
+
|
128
|
+
.nf
|
129
|
+
color: #0000FF
|
130
|
+
|
131
|
+
.nl
|
132
|
+
color: #767600
|
133
|
+
|
134
|
+
.nn
|
135
|
+
color: #0000FF
|
136
|
+
font-weight: bold
|
137
|
+
|
138
|
+
.nt
|
139
|
+
color: #008000
|
140
|
+
font-weight: bold
|
141
|
+
|
142
|
+
.nv
|
143
|
+
color: #19177C
|
144
|
+
|
145
|
+
.ow
|
146
|
+
color: #AA22FF
|
147
|
+
font-weight: bold
|
148
|
+
|
149
|
+
.w
|
150
|
+
color: #bbbbbb
|
151
|
+
|
152
|
+
.mb, .mf, .mh, .mi, .mo
|
153
|
+
color: #666666
|
154
|
+
|
155
|
+
.sa, .sb, .sc, .dl
|
156
|
+
color: #BA2121
|
157
|
+
|
158
|
+
.sd
|
159
|
+
color: #BA2121
|
160
|
+
font-style: italic
|
161
|
+
|
162
|
+
.s2
|
163
|
+
color: #BA2121
|
164
|
+
|
165
|
+
.se
|
166
|
+
color: #AA5D1F
|
167
|
+
font-weight: bold
|
168
|
+
|
169
|
+
.sh
|
170
|
+
color: #BA2121
|
171
|
+
|
172
|
+
.si
|
173
|
+
color: #A45A77
|
174
|
+
font-weight: bold
|
175
|
+
|
176
|
+
.sx
|
177
|
+
color: #008000
|
178
|
+
|
179
|
+
.sr
|
180
|
+
color: #A45A77
|
181
|
+
|
182
|
+
.s1
|
183
|
+
color: #BA2121
|
184
|
+
|
185
|
+
.ss
|
186
|
+
color: #19177C
|
187
|
+
|
188
|
+
.bp
|
189
|
+
color: #008000
|
190
|
+
|
191
|
+
.fm
|
192
|
+
color: #0000FF
|
193
|
+
|
194
|
+
.vc, .vg, .vi, .vm
|
195
|
+
color: #19177C
|
196
|
+
|
197
|
+
.il
|
198
|
+
color: #666666
|
@@ -0,0 +1,168 @@
|
|
1
|
+
pre
|
2
|
+
line-height: 125%
|
3
|
+
|
4
|
+
td.linenos .normal, span.linenos
|
5
|
+
color: inherit
|
6
|
+
background-color: transparent
|
7
|
+
padding-left: 5px
|
8
|
+
padding-right: 5px
|
9
|
+
|
10
|
+
td.linenos .special, span.linenos.special
|
11
|
+
color: #000000
|
12
|
+
background-color: #ffffc0
|
13
|
+
padding-left: 5px
|
14
|
+
padding-right: 5px
|
15
|
+
|
16
|
+
.highlight
|
17
|
+
.hll
|
18
|
+
background-color: #49483e
|
19
|
+
|
20
|
+
background: #272822
|
21
|
+
color: #f8f8f2
|
22
|
+
|
23
|
+
.c
|
24
|
+
color: #959077
|
25
|
+
|
26
|
+
.err
|
27
|
+
color: #ed007e
|
28
|
+
background-color: #1e0010
|
29
|
+
|
30
|
+
.esc, .g
|
31
|
+
color: #f8f8f2
|
32
|
+
|
33
|
+
.k
|
34
|
+
color: #66d9ef
|
35
|
+
|
36
|
+
.l
|
37
|
+
color: #ae81ff
|
38
|
+
|
39
|
+
.n
|
40
|
+
color: #f8f8f2
|
41
|
+
|
42
|
+
.o
|
43
|
+
color: #ff4689
|
44
|
+
|
45
|
+
.x, .p
|
46
|
+
color: #f8f8f2
|
47
|
+
|
48
|
+
.ch, .cm, .cp, .cpf, .c1, .cs
|
49
|
+
color: #959077
|
50
|
+
|
51
|
+
.gd
|
52
|
+
color: #ff4689
|
53
|
+
|
54
|
+
.ge
|
55
|
+
color: #f8f8f2
|
56
|
+
font-style: italic
|
57
|
+
|
58
|
+
.ges
|
59
|
+
color: #f8f8f2
|
60
|
+
font-weight: bold
|
61
|
+
font-style: italic
|
62
|
+
|
63
|
+
.gr, .gh
|
64
|
+
color: #f8f8f2
|
65
|
+
|
66
|
+
.gi
|
67
|
+
color: #a6e22e
|
68
|
+
|
69
|
+
.go
|
70
|
+
color: #66d9ef
|
71
|
+
|
72
|
+
.gp
|
73
|
+
color: #ff4689
|
74
|
+
font-weight: bold
|
75
|
+
|
76
|
+
.gs
|
77
|
+
color: #f8f8f2
|
78
|
+
font-weight: bold
|
79
|
+
|
80
|
+
.gu
|
81
|
+
color: #959077
|
82
|
+
|
83
|
+
.gt
|
84
|
+
color: #f8f8f2
|
85
|
+
|
86
|
+
.kc, .kd
|
87
|
+
color: #66d9ef
|
88
|
+
|
89
|
+
.kn
|
90
|
+
color: #ff4689
|
91
|
+
|
92
|
+
.kp, .kr, .kt
|
93
|
+
color: #66d9ef
|
94
|
+
|
95
|
+
.ld
|
96
|
+
color: #e6db74
|
97
|
+
|
98
|
+
.m
|
99
|
+
color: #ae81ff
|
100
|
+
|
101
|
+
.s
|
102
|
+
color: #e6db74
|
103
|
+
|
104
|
+
.na
|
105
|
+
color: #a6e22e
|
106
|
+
|
107
|
+
.nb
|
108
|
+
color: #f8f8f2
|
109
|
+
|
110
|
+
.nc
|
111
|
+
color: #a6e22e
|
112
|
+
|
113
|
+
.no
|
114
|
+
color: #66d9ef
|
115
|
+
|
116
|
+
.nd
|
117
|
+
color: #a6e22e
|
118
|
+
|
119
|
+
.ni
|
120
|
+
color: #f8f8f2
|
121
|
+
|
122
|
+
.ne, .nf
|
123
|
+
color: #a6e22e
|
124
|
+
|
125
|
+
.nl, .nn
|
126
|
+
color: #f8f8f2
|
127
|
+
|
128
|
+
.nx
|
129
|
+
color: #a6e22e
|
130
|
+
|
131
|
+
.py
|
132
|
+
color: #f8f8f2
|
133
|
+
|
134
|
+
.nt
|
135
|
+
color: #ff4689
|
136
|
+
|
137
|
+
.nv
|
138
|
+
color: #f8f8f2
|
139
|
+
|
140
|
+
.ow
|
141
|
+
color: #ff4689
|
142
|
+
|
143
|
+
.pm, .w
|
144
|
+
color: #f8f8f2
|
145
|
+
|
146
|
+
.mb, .mf, .mh, .mi, .mo
|
147
|
+
color: #ae81ff
|
148
|
+
|
149
|
+
.sa, .sb, .sc, .dl, .sd, .s2
|
150
|
+
color: #e6db74
|
151
|
+
|
152
|
+
.se
|
153
|
+
color: #ae81ff
|
154
|
+
|
155
|
+
.sh, .si, .sx, .sr, .s1, .ss
|
156
|
+
color: #e6db74
|
157
|
+
|
158
|
+
.bp
|
159
|
+
color: #f8f8f2
|
160
|
+
|
161
|
+
.fm
|
162
|
+
color: #a6e22e
|
163
|
+
|
164
|
+
.vc, .vg, .vi, .vm
|
165
|
+
color: #f8f8f2
|
166
|
+
|
167
|
+
.il
|
168
|
+
color: #ae81ff
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-bhautiki
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pawan Mishra
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -105,6 +105,7 @@ files:
|
|
105
105
|
- README.md
|
106
106
|
- _config.yml
|
107
107
|
- _data/assets.yml
|
108
|
+
- _data/language.yml
|
108
109
|
- _data/messages.yml
|
109
110
|
- _data/sections.yml
|
110
111
|
- _data/socials.yml
|
@@ -174,8 +175,8 @@ files:
|
|
174
175
|
- assets/external/mathjax/js/output/svg.js
|
175
176
|
- assets/external/mathjax/js/output/svg/fonts/tex.js
|
176
177
|
- assets/external/mathjax/js/tex-mml-chtml.js
|
177
|
-
- assets/external/pygments/css/default.
|
178
|
-
- assets/external/pygments/css/monokai.
|
178
|
+
- assets/external/pygments/css/default.sass
|
179
|
+
- assets/external/pygments/css/monokai.sass
|
179
180
|
- assets/external/tocbot/css/tocbot.css
|
180
181
|
- assets/external/tocbot/js/tocbot.min.js
|
181
182
|
- assets/img/bhautiki-samay.gif
|
@@ -1,75 +0,0 @@
|
|
1
|
-
pre { line-height: 125%; }
|
2
|
-
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
|
3
|
-
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
|
4
|
-
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
|
5
|
-
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
|
6
|
-
.highlight .hll { background-color: #ffffcc }
|
7
|
-
.highlight { background: #f8f8f8; }
|
8
|
-
.highlight .c { color: #3D7B7B; font-style: italic } /* Comment */
|
9
|
-
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
10
|
-
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
|
11
|
-
.highlight .o { color: #666666 } /* Operator */
|
12
|
-
.highlight .ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */
|
13
|
-
.highlight .cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */
|
14
|
-
.highlight .cp { color: #9C6500 } /* Comment.Preproc */
|
15
|
-
.highlight .cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */
|
16
|
-
.highlight .c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */
|
17
|
-
.highlight .cs { color: #3D7B7B; font-style: italic } /* Comment.Special */
|
18
|
-
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
19
|
-
.highlight .ge { font-style: italic } /* Generic.Emph */
|
20
|
-
.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
|
21
|
-
.highlight .gr { color: #E40000 } /* Generic.Error */
|
22
|
-
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
23
|
-
.highlight .gi { color: #008400 } /* Generic.Inserted */
|
24
|
-
.highlight .go { color: #717171 } /* Generic.Output */
|
25
|
-
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
26
|
-
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
27
|
-
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
28
|
-
.highlight .gt { color: #0044DD } /* Generic.Traceback */
|
29
|
-
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
|
30
|
-
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
|
31
|
-
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
|
32
|
-
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
|
33
|
-
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
|
34
|
-
.highlight .kt { color: #B00040 } /* Keyword.Type */
|
35
|
-
.highlight .m { color: #666666 } /* Literal.Number */
|
36
|
-
.highlight .s { color: #BA2121 } /* Literal.String */
|
37
|
-
.highlight .na { color: #687822 } /* Name.Attribute */
|
38
|
-
.highlight .nb { color: #008000 } /* Name.Builtin */
|
39
|
-
.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
|
40
|
-
.highlight .no { color: #880000 } /* Name.Constant */
|
41
|
-
.highlight .nd { color: #AA22FF } /* Name.Decorator */
|
42
|
-
.highlight .ni { color: #717171; font-weight: bold } /* Name.Entity */
|
43
|
-
.highlight .ne { color: #CB3F38; font-weight: bold } /* Name.Exception */
|
44
|
-
.highlight .nf { color: #0000FF } /* Name.Function */
|
45
|
-
.highlight .nl { color: #767600 } /* Name.Label */
|
46
|
-
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
|
47
|
-
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
|
48
|
-
.highlight .nv { color: #19177C } /* Name.Variable */
|
49
|
-
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
|
50
|
-
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
51
|
-
.highlight .mb { color: #666666 } /* Literal.Number.Bin */
|
52
|
-
.highlight .mf { color: #666666 } /* Literal.Number.Float */
|
53
|
-
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
|
54
|
-
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
|
55
|
-
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
|
56
|
-
.highlight .sa { color: #BA2121 } /* Literal.String.Affix */
|
57
|
-
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
|
58
|
-
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
|
59
|
-
.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
|
60
|
-
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
|
61
|
-
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
|
62
|
-
.highlight .se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */
|
63
|
-
.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
|
64
|
-
.highlight .si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */
|
65
|
-
.highlight .sx { color: #008000 } /* Literal.String.Other */
|
66
|
-
.highlight .sr { color: #A45A77 } /* Literal.String.Regex */
|
67
|
-
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
|
68
|
-
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
|
69
|
-
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
|
70
|
-
.highlight .fm { color: #0000FF } /* Name.Function.Magic */
|
71
|
-
.highlight .vc { color: #19177C } /* Name.Variable.Class */
|
72
|
-
.highlight .vg { color: #19177C } /* Name.Variable.Global */
|
73
|
-
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
|
74
|
-
.highlight .vm { color: #19177C } /* Name.Variable.Magic */
|
75
|
-
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
|
@@ -1,85 +0,0 @@
|
|
1
|
-
pre { line-height: 125%; }
|
2
|
-
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
|
3
|
-
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
|
4
|
-
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
|
5
|
-
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
|
6
|
-
.highlight .hll { background-color: #49483e }
|
7
|
-
.highlight { background: #272822; color: #f8f8f2 }
|
8
|
-
.highlight .c { color: #959077 } /* Comment */
|
9
|
-
.highlight .err { color: #ed007e; background-color: #1e0010 } /* Error */
|
10
|
-
.highlight .esc { color: #f8f8f2 } /* Escape */
|
11
|
-
.highlight .g { color: #f8f8f2 } /* Generic */
|
12
|
-
.highlight .k { color: #66d9ef } /* Keyword */
|
13
|
-
.highlight .l { color: #ae81ff } /* Literal */
|
14
|
-
.highlight .n { color: #f8f8f2 } /* Name */
|
15
|
-
.highlight .o { color: #ff4689 } /* Operator */
|
16
|
-
.highlight .x { color: #f8f8f2 } /* Other */
|
17
|
-
.highlight .p { color: #f8f8f2 } /* Punctuation */
|
18
|
-
.highlight .ch { color: #959077 } /* Comment.Hashbang */
|
19
|
-
.highlight .cm { color: #959077 } /* Comment.Multiline */
|
20
|
-
.highlight .cp { color: #959077 } /* Comment.Preproc */
|
21
|
-
.highlight .cpf { color: #959077 } /* Comment.PreprocFile */
|
22
|
-
.highlight .c1 { color: #959077 } /* Comment.Single */
|
23
|
-
.highlight .cs { color: #959077 } /* Comment.Special */
|
24
|
-
.highlight .gd { color: #ff4689 } /* Generic.Deleted */
|
25
|
-
.highlight .ge { color: #f8f8f2; font-style: italic } /* Generic.Emph */
|
26
|
-
.highlight .ges { color: #f8f8f2; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
|
27
|
-
.highlight .gr { color: #f8f8f2 } /* Generic.Error */
|
28
|
-
.highlight .gh { color: #f8f8f2 } /* Generic.Heading */
|
29
|
-
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
|
30
|
-
.highlight .go { color: #66d9ef } /* Generic.Output */
|
31
|
-
.highlight .gp { color: #ff4689; font-weight: bold } /* Generic.Prompt */
|
32
|
-
.highlight .gs { color: #f8f8f2; font-weight: bold } /* Generic.Strong */
|
33
|
-
.highlight .gu { color: #959077 } /* Generic.Subheading */
|
34
|
-
.highlight .gt { color: #f8f8f2 } /* Generic.Traceback */
|
35
|
-
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
|
36
|
-
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
|
37
|
-
.highlight .kn { color: #ff4689 } /* Keyword.Namespace */
|
38
|
-
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
|
39
|
-
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
|
40
|
-
.highlight .kt { color: #66d9ef } /* Keyword.Type */
|
41
|
-
.highlight .ld { color: #e6db74 } /* Literal.Date */
|
42
|
-
.highlight .m { color: #ae81ff } /* Literal.Number */
|
43
|
-
.highlight .s { color: #e6db74 } /* Literal.String */
|
44
|
-
.highlight .na { color: #a6e22e } /* Name.Attribute */
|
45
|
-
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
|
46
|
-
.highlight .nc { color: #a6e22e } /* Name.Class */
|
47
|
-
.highlight .no { color: #66d9ef } /* Name.Constant */
|
48
|
-
.highlight .nd { color: #a6e22e } /* Name.Decorator */
|
49
|
-
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
|
50
|
-
.highlight .ne { color: #a6e22e } /* Name.Exception */
|
51
|
-
.highlight .nf { color: #a6e22e } /* Name.Function */
|
52
|
-
.highlight .nl { color: #f8f8f2 } /* Name.Label */
|
53
|
-
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
|
54
|
-
.highlight .nx { color: #a6e22e } /* Name.Other */
|
55
|
-
.highlight .py { color: #f8f8f2 } /* Name.Property */
|
56
|
-
.highlight .nt { color: #ff4689 } /* Name.Tag */
|
57
|
-
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
|
58
|
-
.highlight .ow { color: #ff4689 } /* Operator.Word */
|
59
|
-
.highlight .pm { color: #f8f8f2 } /* Punctuation.Marker */
|
60
|
-
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
|
61
|
-
.highlight .mb { color: #ae81ff } /* Literal.Number.Bin */
|
62
|
-
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
|
63
|
-
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
|
64
|
-
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
|
65
|
-
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
|
66
|
-
.highlight .sa { color: #e6db74 } /* Literal.String.Affix */
|
67
|
-
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
|
68
|
-
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
|
69
|
-
.highlight .dl { color: #e6db74 } /* Literal.String.Delimiter */
|
70
|
-
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
|
71
|
-
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
|
72
|
-
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
|
73
|
-
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
|
74
|
-
.highlight .si { color: #e6db74 } /* Literal.String.Interpol */
|
75
|
-
.highlight .sx { color: #e6db74 } /* Literal.String.Other */
|
76
|
-
.highlight .sr { color: #e6db74 } /* Literal.String.Regex */
|
77
|
-
.highlight .s1 { color: #e6db74 } /* Literal.String.Single */
|
78
|
-
.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
|
79
|
-
.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
80
|
-
.highlight .fm { color: #a6e22e } /* Name.Function.Magic */
|
81
|
-
.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
82
|
-
.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
83
|
-
.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
84
|
-
.highlight .vm { color: #f8f8f2 } /* Name.Variable.Magic */
|
85
|
-
.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|