minimalist-theme 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +51 -8
- data/_layouts/default.html +2 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 659867206428113a301560a1b48885a945381c8a89c235b6330c3bb7f9e7063e
|
4
|
+
data.tar.gz: 928cbf0f67c9c17565721839fe8390a46d19bdf12f230e0689d7d78743acc72c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fdac358c5a84959b5b76f33a6f58dfd1ec7eae44ea1662c5cf9647141cad1a4ec3cc3605eb9952903a1eb769c5dea6402b20162130aa2c6020652516a007ae86
|
7
|
+
data.tar.gz: 315ed9fc6918c4a0002489d901e7850d5775c7ae90aaeec36c2021e09f9e9a33cbd9da94b2d8e82feac9ac5ab952001715f93cf4473cd9649570c3e57374ba1c
|
data/README.md
CHANGED
@@ -1,11 +1,6 @@
|
|
1
1
|
# minimalist-theme
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
6
|
-
|
7
|
-
TODO: Delete this and the text above, and describe your gem
|
8
|
-
|
3
|
+
Minimalist theme created with tiny but powerful Tachyon Framework
|
9
4
|
|
10
5
|
## Installation
|
11
6
|
|
@@ -31,11 +26,59 @@ Or install it yourself as:
|
|
31
26
|
|
32
27
|
## Usage
|
33
28
|
|
34
|
-
|
29
|
+
Three files are mandatories:
|
30
|
+
|
31
|
+
- index.md
|
32
|
+
- about.md
|
33
|
+
- categories.md
|
34
|
+
|
35
|
+
for each files, the layout name will be the same as the file name.
|
36
|
+
|
37
|
+
Now you may edit _config.yml with theses variables:
|
38
|
+
|
39
|
+
```
|
40
|
+
collections:
|
41
|
+
authors:
|
42
|
+
output: true
|
43
|
+
defaults:
|
44
|
+
- scope:
|
45
|
+
path: ""
|
46
|
+
type: "posts"
|
47
|
+
values:
|
48
|
+
layout: "post"
|
49
|
+
- scope:
|
50
|
+
path: ""
|
51
|
+
values:
|
52
|
+
layout: "default"
|
53
|
+
|
54
|
+
title:
|
55
|
+
description:
|
56
|
+
url:
|
57
|
+
|
58
|
+
social:
|
59
|
+
linkedin:
|
60
|
+
github:
|
61
|
+
instagram:
|
62
|
+
|
63
|
+
header:
|
64
|
+
title:
|
65
|
+
subtitle:
|
66
|
+
|
67
|
+
about:
|
68
|
+
username:
|
69
|
+
subtitle:
|
70
|
+
|
71
|
+
permalink: /:title/
|
72
|
+
|
73
|
+
plugins:
|
74
|
+
- jekyll-feed
|
75
|
+
- jekyll-sitemap
|
76
|
+
- jekyll-seo-tag
|
77
|
+
```
|
35
78
|
|
36
79
|
## Contributing
|
37
80
|
|
38
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
81
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/YannickDurden/minimalist-white. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
39
82
|
|
40
83
|
## Development
|
41
84
|
|
data/_layouts/default.html
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minimalist-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- YannickDurden
|
@@ -91,8 +91,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: '0'
|
93
93
|
requirements: []
|
94
|
-
|
94
|
+
rubyforge_project:
|
95
|
+
rubygems_version: 2.7.6
|
95
96
|
signing_key:
|
96
97
|
specification_version: 4
|
97
|
-
summary: minimalistic theme based on Tachyon framework
|
98
|
+
summary: minimalistic theme based on Tachyon framework. See GitHub Page.
|
98
99
|
test_files: []
|