jekkyl-arumai 0.1.0 → 0.1.1
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 +4 -4
- data/README.md +32 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a330c6871dad939ca791a7fec8545f29edfaa4db97a4d55c8bd41f1445c84f3
|
4
|
+
data.tar.gz: bb5b829c0bfe6b8e22410097af4c089b2b1a403f5bfec0a39a1af978236bc9f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20ec1c0ec67068d00b38263be096b31881a6f3dadfa13b96323a4758d4c2ac06a60abab6a66aa1829ffe60234833e6876b8bd8da372877f01b4858dd75d328e7
|
7
|
+
data.tar.gz: 59f9a390e16a085883a27bc71935d190cb85f10dc6ae5619c6d8f6532093f3dc660c167a35709a79b5947175ba21c8e51f875182673fff8c713ceae173c35563
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# jekkyl-arumai
|
2
2
|
|
3
3
|
Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
|
4
4
|
|
@@ -11,13 +11,13 @@ TODO: Delete this and the text above, and describe your gem
|
|
11
11
|
Add this line to your Jekyll site's `Gemfile`:
|
12
12
|
|
13
13
|
```ruby
|
14
|
-
gem "
|
14
|
+
gem "jekyll-arumai"
|
15
15
|
```
|
16
16
|
|
17
17
|
And add this line to your Jekyll site's `_config.yml`:
|
18
18
|
|
19
19
|
```yaml
|
20
|
-
theme:
|
20
|
+
theme: jekyll-arumai
|
21
21
|
```
|
22
22
|
|
23
23
|
And then execute:
|
@@ -26,7 +26,35 @@ And then execute:
|
|
26
26
|
|
27
27
|
Or install it yourself as:
|
28
28
|
|
29
|
-
$ gem install
|
29
|
+
$ gem install jekyll-arumai
|
30
|
+
|
31
|
+
|
32
|
+
## UI Customization
|
33
|
+
|
34
|
+
#### Changing the Prisma Theme
|
35
|
+
|
36
|
+
To change the Prisma theme, add the following line to your config.yml file:
|
37
|
+
|
38
|
+
```yaml
|
39
|
+
prisma:
|
40
|
+
theme_name: twilight
|
41
|
+
```
|
42
|
+
|
43
|
+
This line will replace the default Prisma theme with the specified one. You can visit the Prisma website for available theme names. Currently supported themes include: twilight, dark, funky, okaidia, coy, solarizedlight, and tomorrow.
|
44
|
+
|
45
|
+
#### Replacing the Default Home Page Image
|
46
|
+
|
47
|
+
To replace the default home page image, add the following page variables to your index.md file. Here is a sample code:
|
48
|
+
|
49
|
+
|
50
|
+
```markdown
|
51
|
+
---
|
52
|
+
layout: home
|
53
|
+
image_url: "https://images.pexels.com/photos/2659939/pexels-photo-2659939.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2"
|
54
|
+
---
|
55
|
+
```
|
56
|
+
|
57
|
+
This markdown format will correctly set a new image for your home page.
|
30
58
|
|
31
59
|
## Usage
|
32
60
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekkyl-arumai
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sathia
|
@@ -42,7 +42,7 @@ files:
|
|
42
42
|
- assets/prism.css
|
43
43
|
- assets/prism.js
|
44
44
|
- assets/theme.css
|
45
|
-
homepage: https://
|
45
|
+
homepage: https://gitlab.com/sathias/jekkyl-arumai
|
46
46
|
licenses:
|
47
47
|
- MIT
|
48
48
|
metadata: {}
|