miniscule 0.1.3 → 0.1.4
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 +26 -0
- data/_layouts/home.html +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a39edfea8fce095c60aa8531a6f29354650574ef
|
|
4
|
+
data.tar.gz: da4a81fcd6f56beed1b1a9dccf7dcc6d1c362fd4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f55845cc4c9fc39991cb6bb85d9586be244b848bceeca8728a183e6d3fd65a8b9699bbc6fe2b894d464c1d253cd1387eb22d1340f1cffa4f74fada272115814
|
|
7
|
+
data.tar.gz: 7f88787d9b098dfeae875925d44b7243cbc7fb878e51ac794997dfebbdd0a7e820adacc7800fe169d31dce3cda57b5f8ac9d30d07cd09cd19e3315cc83b59f92
|
data/README.md
CHANGED
|
@@ -4,8 +4,22 @@ A slightly-less-minimal theme for Jekyll. Forked from the [default minima theme]
|
|
|
4
4
|
|
|
5
5
|
[Theme preview](http://ronenagranat.com/)
|
|
6
6
|
|
|
7
|
+
## Screenshots
|
|
8
|
+
|
|
9
|
+

|
|
10
|
+

|
|
11
|
+
|
|
7
12
|
## Installation
|
|
8
13
|
|
|
14
|
+
First, install Jekyll and create a new site following the instructions on the [official webpage](https://jekyllrb.com/):
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
gem install bundler jekyll
|
|
18
|
+
jekyll new my-awesome-site
|
|
19
|
+
cd my-awesome-site
|
|
20
|
+
|
|
21
|
+
*Then:*
|
|
22
|
+
|
|
9
23
|
Add this line to your Jekyll site's Gemfile:
|
|
10
24
|
|
|
11
25
|
```ruby
|
|
@@ -22,6 +36,18 @@ And then execute:
|
|
|
22
36
|
|
|
23
37
|
$ bundle
|
|
24
38
|
|
|
39
|
+
to install and enable the theme.
|
|
40
|
+
|
|
41
|
+
## Build and run
|
|
42
|
+
|
|
43
|
+
To build:
|
|
44
|
+
|
|
45
|
+
$ bundle exec jekyll build
|
|
46
|
+
|
|
47
|
+
To run:
|
|
48
|
+
|
|
49
|
+
$ bundle exec jekyll serve
|
|
50
|
+
|
|
25
51
|
## Features
|
|
26
52
|
|
|
27
53
|
* Cover photo
|
data/_layouts/home.html
CHANGED
|
@@ -10,6 +10,7 @@ layout: default
|
|
|
10
10
|
{{ content }}
|
|
11
11
|
|
|
12
12
|
{%- if site.posts.size > 0 -%}
|
|
13
|
+
<h2>Blog posts</h2>
|
|
13
14
|
<ul class="post-list">
|
|
14
15
|
{%- for post in site.posts -%}
|
|
15
16
|
<li>
|
|
@@ -30,13 +31,16 @@ layout: default
|
|
|
30
31
|
{%- endif -%}
|
|
31
32
|
|
|
32
33
|
{%- if site.twitter_username and site.show_twitter_feed -%}
|
|
33
|
-
|
|
34
|
+
<h2>Twitter feed</h2>
|
|
35
|
+
<center>
|
|
36
|
+
<a data-chrome="noheader, noscrollbar, nofooter, noborders" data-tweet-limit="3" data-dnt="true" class="twitter-timeline" href="https://twitter.com/{{ site.twitter_username }}">
|
|
34
37
|
Tweets
|
|
35
38
|
</a>
|
|
36
39
|
<center>
|
|
37
40
|
<a target="_blank" href="https://twitter.com/{{ site.twitter_username }}">Load more tweets</a>
|
|
38
41
|
</center>
|
|
39
42
|
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
|
43
|
+
</center>
|
|
40
44
|
{%- endif -%}
|
|
41
45
|
|
|
42
46
|
</div>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: miniscule
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ronen Agranat
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|