minima 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -11
- data/_includes/head.html +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c07111ee1193e41414a39d93e7a51dee47014321
|
4
|
+
data.tar.gz: 103dc32887694df546fec333de8d69494a3ff4e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 727bb238600e84f42d652246ba627b99c712f1789781a0cd02b4cc3c9f99d7c410d5744c056be43dc3146b5fc32483372024632ce85190cb0853a38b39acf2f4
|
7
|
+
data.tar.gz: faccad399a3129e69b4364a4796323953ba38c6bf13cfb531300972db6d469418c51fdd8327ef0af1a403c1efc0374f5b6f8835d6e09b6bb2ba64603a0c7694d
|
data/README.md
CHANGED
@@ -21,6 +21,17 @@ theme: minima
|
|
21
21
|
And then execute:
|
22
22
|
|
23
23
|
$ bundle
|
24
|
+
|
25
|
+
Then add a `css/main.scss` file based on the following template, don't forget to include the frontmatter:
|
26
|
+
|
27
|
+
```css
|
28
|
+
---
|
29
|
+
---
|
30
|
+
|
31
|
+
@import "minima";
|
32
|
+
```
|
33
|
+
|
34
|
+
You can choose to override the [`_includes/head.html `](_includes/head.html) file to specify a custom style path.
|
24
35
|
|
25
36
|
## Enabling comments (via Disqus)
|
26
37
|
|
@@ -57,17 +68,6 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/jekyll
|
|
57
68
|
|
58
69
|
To set up your environment to develop this theme, run `bundle install`.
|
59
70
|
|
60
|
-
Then add a `css/main.scss` file based on the following template, don't forget to include the frontmatter:
|
61
|
-
|
62
|
-
```css
|
63
|
-
---
|
64
|
-
---
|
65
|
-
|
66
|
-
@import "minima";
|
67
|
-
```
|
68
|
-
|
69
|
-
You can choose to override the [`_includes/head.html `](_includes/head.html) file to specify a custom style path.
|
70
|
-
|
71
71
|
To test your theme, run `bundle exec rake preview` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme and the contents of the `example/` directory. As you make modifications to your theme and to the example site, your site will regenerate and you should see the changes in the browser after a refresh.
|
72
72
|
|
73
73
|
## License
|
data/_includes/head.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
|
8
8
|
|
9
9
|
{% assign custom_url = site.url | append: site.baseurl %}
|
10
|
-
{% assign full_base_url =
|
10
|
+
{% assign full_base_url = custom_url | default: site.github.url %}
|
11
11
|
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: full_base_url }}">
|
12
12
|
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: full_base_url }}">
|
13
13
|
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | prepend: full_base_url }}">
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minima
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joel Glovier
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-09-
|
11
|
+
date: 2016-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -98,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
98
|
version: '0'
|
99
99
|
requirements: []
|
100
100
|
rubyforge_project:
|
101
|
-
rubygems_version: 2.
|
101
|
+
rubygems_version: 2.5.1
|
102
102
|
signing_key:
|
103
103
|
specification_version: 4
|
104
104
|
summary: A beautiful, minimal theme for Jekyll. NOT DONE YET.
|