jlgrock-flexible-jekyll-theme 0.1.0 → 0.3.0
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 +10 -1
- data/_layouts/main.html +3 -0
- metadata +1 -2
- data/assets/.DS_Store +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 330cfe87a01c7aa32152d610c1369f4cbc5cb1cbb69b499df3197e2e1d6c0f0e
|
4
|
+
data.tar.gz: d584a8bf2914d5c73e07c453b6ffc67fba6ceb989dcd30eb20358c9390f63e66
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96716d9d7fdf9d280612a4a4fd9d74d31e1f601e8ab9b96d197aaf18c80d0dc91de6214b81753c4dd160ac38b3027d1968a826d9f40d5fce395f64dc358d1fe0
|
7
|
+
data.tar.gz: 746320c4871a3f21ceb57aede3c13c5f2454b8a7262b0d88d0e26b8a1e3002f0ad5e476d3042f48c7e1ac25fc2131eba74a5810e94d90254b2d5c98a9dfd9a3b
|
data/README.md
CHANGED
@@ -3,4 +3,13 @@
|
|
3
3
|
Customized theme, forked from https://github.com/artemsheludko/flexible-jekyll/
|
4
4
|
|
5
5
|
# Usage
|
6
|
-
|
6
|
+
1. If you haven't already, create a new project. You can easily do this with `Jekyll new ${sitename}`
|
7
|
+
2. Update your Gemfile to contain
|
8
|
+
`gem "jlgrock-flexible-jekyll-theme", "0.1.0"``
|
9
|
+
3. Update your `_config.yml` file to contain everything that is in [here](http://www.github.com/jlgrock/flexible-jekyll/blob/_config.yml)
|
10
|
+
4. Update your `_config.yml` file to contain
|
11
|
+
`theme: jlgrock-flexible-jekyll-theme`
|
12
|
+
5. Copy the `index.html` and `tags.html` to your project (or create your own!). These are necessary for the tags and pagination plugins.
|
13
|
+
6. Run `bundle install` at the root of your directory
|
14
|
+
7. Run `bundle exec jekyll serve` and you should now be able to view any posts you create at `http://localhost:4000`.
|
15
|
+
|
data/_layouts/main.html
CHANGED
@@ -10,6 +10,9 @@ layout: default
|
|
10
10
|
</div>
|
11
11
|
<div class="author-name">{{site.author}}</div>
|
12
12
|
<p>{{site.about-author}}</p>
|
13
|
+
{% if site.show-more-about %}
|
14
|
+
<div class="show-more-about"><a href="/about/">More about me...</a></div>
|
15
|
+
{% endif %}
|
13
16
|
</div>
|
14
17
|
</header>
|
15
18
|
<footer>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jlgrock-flexible-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Grant
|
@@ -68,7 +68,6 @@ files:
|
|
68
68
|
- _layouts/default.html
|
69
69
|
- _layouts/main.html
|
70
70
|
- _layouts/post.html
|
71
|
-
- assets/.DS_Store
|
72
71
|
- assets/css/.DS_Store
|
73
72
|
- assets/css/main.css
|
74
73
|
- assets/css/scss/_media.scss
|
data/assets/.DS_Store
DELETED
Binary file
|