jekyll-theme-miniplex 0.1.1 → 0.1.2
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 +21 -7
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a57a0ea671d3ef283166efd4afe96ae75633007bd6ea802782d4f8858577eae1
|
4
|
+
data.tar.gz: 6349f3cf65b59b0dba5c7c4d9a12adab25bac5699de55b760d77897a0b801625
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz: '
|
6
|
+
metadata.gz: 909bc83df3a425fa092eb2147158ace5fada189f3e516abf1ce06748120f0664534bfe2525d86ddf66a687eb1689498815c7eb5877dc8d975e2b7ce168d93bdb
|
7
|
+
data.tar.gz: '08ded7b80dc8a3c25b8ab3f338667963d8a4591a686dc1eb744c99b954ca8ef12765a285167e1dd4ca44cfd0e9dbb046b01750bb976160a2d5a3d4fb95dba172'
|
data/README.md
CHANGED
@@ -1,16 +1,33 @@
|
|
1
1
|
# jekyll-theme-miniplex
|
2
2
|
|
3
|
-
A Jekyll
|
3
|
+
A theme for [Jekyll](https://jekyllrb.com/). Features and characteristics:
|
4
|
+
|
5
|
+
- Responsive.
|
6
|
+
- Table reformatting for very small screens.
|
7
|
+
- Hamburger menu at the bottom right, easy to reach.
|
8
|
+
- Uses the [IBM Plex](https://www.ibm.com/plex/) typeface, hence the name.
|
9
|
+
|
10
|
+
I'm using this for my personal web site, so don't expect this to fit your needs.
|
11
|
+
|
12
|
+
## What it looks like
|
13
|
+
|
14
|
+

|
15
|
+
|
16
|
+
|
4
17
|
|
5
18
|
## Installation
|
6
19
|
|
7
|
-
Add
|
20
|
+
Add the following to your Jekyll site's `Gemfile`:
|
8
21
|
|
9
22
|
```ruby
|
10
23
|
gem "jekyll-theme-miniplex"
|
24
|
+
|
25
|
+
# Use the most recent version of jekyll-sass-converter, to force Dart Sass
|
26
|
+
gem "sass-embedded"
|
27
|
+
gem "jekyll-sass-converter", github: "jekyll/jekyll-sass-converter"
|
11
28
|
```
|
12
29
|
|
13
|
-
|
30
|
+
Add the following to your Jekyll site's `_config.yml`:
|
14
31
|
|
15
32
|
```yaml
|
16
33
|
theme: jekyll-theme-miniplex
|
@@ -20,13 +37,10 @@ And then execute:
|
|
20
37
|
|
21
38
|
$ bundle
|
22
39
|
|
23
|
-
Or install it yourself as:
|
24
|
-
|
25
|
-
$ gem install jekyll-theme-miniplex
|
26
40
|
|
27
41
|
## Usage
|
28
42
|
|
29
|
-
|
43
|
+
At the moment, there is only a `default` layout.
|
30
44
|
|
31
45
|
|
32
46
|
## License
|