jek 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +49 -20
  3. data/_layouts/post.html +0 -2
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 27a41819b589e496656452d3880c6c57d3d5f05f753e456f6346099fec2b179e
4
- data.tar.gz: 19649c3e3937301d2b99fd5386d476ea81e164555de0e6bf75463b3c071ae80e
3
+ metadata.gz: e7b347282a145e10aab3fef78217a5d5a5c5af1d2e434d431a163fa41545fd90
4
+ data.tar.gz: 2f2af07a481e9f2d16c8d949eb40841fc8456b86c6081e3db90d69a96fce61f8
5
5
  SHA512:
6
- metadata.gz: a0a3c38cd22a07ea69b68416424d5363d56bf050b7caee5ed9897c3abd77d1685d101dd7cdd0f0666981464ceba9f5a924346093328f9fd38285c6a2b32a782d
7
- data.tar.gz: 7f758a641435f9c8bebb36e7a502b4a2467fff43e7a333590ed4c5e02bc663fad87dba9f14de7591596b9515404a22dfebba0fcc7d5886bde424c2e3591b27bf
6
+ metadata.gz: bf5c40fa71c4deed2a07c6c990799c234d0277223e43d6b10e7319078678003d9f7d0a4a51baadf19af6d22b701eb25416e4299cfc4a52931d2cc3cc434caefe
7
+ data.tar.gz: 9c80578ba33edc9009aa108d539f4379efa90201472f20f96391d993bcdc273c5dad14b5e7e46949061a16981ebbbf99b314f8f1c597bc23579649eb6152cea9
data/README.md CHANGED
@@ -1,25 +1,54 @@
1
1
 
2
2
  ```text
3
- ░░░░░░░░░░░░░░░░░██╗███████╗██╗░░██╗░░░░░░░░░░░░
4
- ░░░░░░░░░░░░░░░░░██║██╔════╝██║░██╔╝░░░░░░░░░░░░
5
- ░░░░░░░░░░░░░░░░░██║█████╗░░█████═╝░░░░░░░░░░░░░
6
- ░░░░░░░░░░░░██╗░░██║██╔══╝░░██╔═██╗░░░░░░░░░░░░░
7
- ░░░░░░░░░░░░╚█████╔╝███████╗██║░╚██╗░░░░░░░░░░░░
8
- ░░░░░░░░░░░░░╚════╝░╚══════╝╚═╝░░╚═╝░░░░░░░░░░░░
9
- ░░░░░░░░░░░░░░░░░░░░ by Tyler Butler ░░░░░░░░░░░
10
- ```
11
-
12
- [![Netlify Status](https://api.netlify.com/api/v1/badges/9d1f745e-c8d9-4732-ab34-06748d61e84d/deploy-status)](https://app.netlify.com/sites/jekyll-jek/deploys)
13
-
14
-
15
- > Jek is a minimalist jekyll theme putting the power of color schemes in the user's hands. Toggle between schemes hassle-free, create new one's on the go, and store settings for future use.
16
-
17
- #### Index
18
- + [features](#-features)
19
- + [roadmap](#-roadmap)
20
- + [about themes](#-all-about-the-theme)
21
- + [add new themes](#-add-new-themes)
22
- + [themes](#-default-themes)
3
+ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
4
+ ░░░░░░░░░░██╗███████╗██╗░░██╗░░░░░░░░░
5
+ ░░░░░░░░░░██║██╔════╝██║░██╔╝░░░░░░░░░
6
+ ░░░░░░░░░░██║█████╗░░█████═╝░░░░░░░░░░
7
+ ░░░░░██╗░░██║██╔══╝░░██╔═██╗░░░░░░░░░░
8
+ ░░░░░╚█████╔╝███████╗██║░╚██╗░░░░░░░░░
9
+ ░░░░░░╚════╝░╚══════╝╚═╝░░╚═╝░░░░░░░░░
10
+ ░░░░░░░░░░░░░ by Tyler Butler ░░░░░░░░
11
+ ```
12
+
13
+ [![Netlify Status](https://api.netlify.com/api/v1/badges/9d1f745e-c8d9-4732-ab34-06748d61e84d/deploy-status)](https://app.netlify.com/sites/jekyll-jek/deploys) [![Gem Version](https://badge.fury.io/rb/jek.svg)](https://badge.fury.io/rb/jek)
14
+
15
+
16
+
17
+
18
+ > Jek is a minimalist jekyll theme putting the power of color schemes in the user's hands. Toggle between schemes hassle-free, create new one's on the go, and store settings in-browser.
19
+
20
+ ### 🛠️ Installation
21
+
22
+ To install Jek, you can use the [ruby gem](https://rubygems.org/gems/jek) or clone the [github repository](https://github.com/tcbutler320/jek).
23
+
24
+ *Install from Gem*
25
+
26
+ 1) Create a new jekyll project
27
+
28
+ `jekyll new myJekTheme`
29
+
30
+ 2) Change default `minima` theme to `jek`
31
+
32
+ ```text
33
+ # Build settings
34
+ theme: jek
35
+ ```
36
+
37
+
38
+ 3) Change `gemfile` to the following
39
+
40
+ ```text
41
+ source "https://rubygems.org"
42
+
43
+ gem "jekyll"
44
+ gem "jekyll-feed"
45
+ gem "jek"
46
+ ```
47
+
48
+ 4) Install gem
49
+
50
+ `bundle install`
51
+
23
52
  ### ⚡ Features
24
53
 
25
54
  *Client Side Themes*
data/_layouts/post.html CHANGED
@@ -11,8 +11,6 @@
11
11
  </p>
12
12
  <p style="text-align:left;">
13
13
  <i>{{page.author}}, {{page.date | date: '%B %d %Y'}}</i>
14
- <br>
15
- {% include read_time.html %}
16
14
  </p>
17
15
  <div>
18
16
  {{ content }}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jek
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - tcbutler320