jekyll-bhautiki 0.1.5 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7514ddcbddfaed6837ff07a61200012498674acb4e8baa7ee16010b924655308
4
- data.tar.gz: fd893bd332297ae9ae3dd614615e54805329d9ab71f653d255f19c0beb759125
3
+ metadata.gz: 20a1e11ff732f2dab8fe278c87b7af977323eb0dd8893d4825b9f65b73773d6d
4
+ data.tar.gz: 19e2f6e77f7722ebe7dc4b83294844516372ffba1cfd7d46728067a4525ce3d0
5
5
  SHA512:
6
- metadata.gz: f9d9cc285a2cf59c4dcfe4e05643d175795ab6655c91a7db009b7827f5eb8fb43db82311b728563f6ead05300622fdcebcdea84f5d20599e0e6a96e95122bced
7
- data.tar.gz: 9fa0b6484289f9a288bc0855e4dc91563f335d9607bcb3d8735b52746a11ad7c00d1645ff8e05bc3d13eb91abb2bd3d93f827660f36b7d910072d4f17f75a128
6
+ metadata.gz: 427cef083839a2c0fc147fb774ff9e00b814a8825d77ff010d45bbe39bcbf4120317ea92dd2fdcf7c2f6abefd9aa519befafe5ddb65c842c8ff61190bbaa1cd3
7
+ data.tar.gz: 8b069ed9a616c5281ca8ea5a925f5c419d528d919574d249e156e060ffd809cb7593ca8249e4021fe4ac0604e51e38e17c6b2042cb925a7d6e00e2f941d92607
data/README.md CHANGED
@@ -61,11 +61,13 @@ bundle install
61
61
  # Host on local.
62
62
  bundle exec jekyll serve
63
63
 
64
- # User gem build and gem push to
64
+ # Use gem build and gem push to
65
65
  # build and push gems.
66
66
 
67
67
  ```
68
68
 
69
+ [Rakefile](/Rakefile) or shell script for task automation.
70
+
69
71
  #### Markups
70
72
 
71
73
  - [SASS](https://sass-lang.com/).
data/_config.yml CHANGED
@@ -55,6 +55,8 @@ plugins:
55
55
  - jekyll-feed
56
56
  - jekyll-seo-tag
57
57
  - jekyll-archives
58
+ - jekyll-include-cache
59
+ - jekyll-sitemap # requires base hostname and protocol for site; see url above
58
60
 
59
61
  # Analytics
60
62
  analytics:
@@ -100,6 +102,8 @@ exclude:
100
102
  - .python-version
101
103
  - jekyll-bhautiki.gemspec
102
104
  - docs/
105
+ - Rakefile
106
+ - run.sh
103
107
 
104
108
  kramdown:
105
109
  syntax_highlighter: rouge
@@ -1,3 +1,4 @@
1
+ @use "sass:meta"
1
2
 
2
3
  @mixin light-mode
3
4
  --color: #06080F
@@ -31,11 +32,11 @@
31
32
 
32
33
  html, html[data-theme="light"]
33
34
  @include light-mode
34
- @import '../../assets/external/pygments/css/default'
35
+ @include meta.load-css('../../assets/external/pygments/css/default')
35
36
 
36
37
  html[data-theme="dark"]
37
38
  @include dark-mode
38
- @import '../../assets/external/pygments/css/monokai'
39
+ @include meta.load-css('../../assets/external/pygments/css/monokai')
39
40
 
40
41
  @media (prefers-color-scheme: dark)
41
42
  html, html[data-theme="dark"]
@@ -1,11 +1,13 @@
1
+ @use "variables"
2
+
1
3
  @use 'feather'
2
4
  @use 'image'
3
5
 
4
6
  #nav
5
- width: $bar-width
7
+ width: variables.$bar-width
6
8
 
7
9
  .grid-y
8
- min-height: $bar-height
10
+ min-height: variables.$bar-height
9
11
 
10
12
  .text-left
11
13
  text-align: left
@@ -1,11 +1,13 @@
1
+ @use "variables"
2
+
1
3
  @use 'feather'
2
4
  @use 'image'
3
5
 
4
6
  #side
5
- width: $bar-width
7
+ width: variables.$bar-width
6
8
 
7
9
  .grid-y
8
- min-height: $bar-height
10
+ min-height: variables.$bar-height
9
11
 
10
12
  img
11
13
  @include image.bar-image
data/_sass/main.sass CHANGED
@@ -1,10 +1,10 @@
1
1
  // Import all variables. Must be on top.
2
- @import 'common/variables'
2
+ @use 'common/variables'
3
3
 
4
- @import 'common/nav'
5
- @import 'common/feather'
6
- @import 'common/side'
7
- @import 'common/syntax'
8
- @import 'layouts/categories'
9
- @import 'layouts/default'
10
- @import 'common/mode'
4
+ @use 'common/nav'
5
+ @use 'common/feather'
6
+ @use 'common/side'
7
+ @use 'common/syntax'
8
+ @use 'layouts/categories'
9
+ @use 'layouts/default'
10
+ @use 'common/mode'
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  ---
3
3
 
4
- @import 'main'
4
+ @use 'main'
5
5
 
6
6
  /* Add custom theme here */