minimalist-theme 0.1.2 → 0.1.3

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +51 -8
  3. data/_layouts/default.html +2 -0
  4. metadata +4 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 33d344b6839cd10ec732cb3b78b9fe2dfa60dac3c33d6fef9b90a76d33f63b61
4
- data.tar.gz: d82b4a7118babbcf63d83c4a4ba7feb31d3c786fbba5eaf03b728988c25e1b69
3
+ metadata.gz: 659867206428113a301560a1b48885a945381c8a89c235b6330c3bb7f9e7063e
4
+ data.tar.gz: 928cbf0f67c9c17565721839fe8390a46d19bdf12f230e0689d7d78743acc72c
5
5
  SHA512:
6
- metadata.gz: 81cd44f45bb1fccf06b42571bebda562d7c9759573c804b28256fff24595c2957fcdda6bd145e2f45d5492dcb030349e10bca9d42d893a7bcc41c6a653e177af
7
- data.tar.gz: 43cf50cf66baaf96af1e2dba0472a897bdf6aed4b267de379382980a37fcb6010376a867badc634b3a896492a180af1e3f585ec63ac69becaf84af081cf5fb27
6
+ metadata.gz: fdac358c5a84959b5b76f33a6f58dfd1ec7eae44ea1662c5cf9647141cad1a4ec3cc3605eb9952903a1eb769c5dea6402b20162130aa2c6020652516a007ae86
7
+ data.tar.gz: 315ed9fc6918c4a0002489d901e7850d5775c7ae90aaeec36c2021e09f9e9a33cbd9da94b2d8e82feac9ac5ab952001715f93cf4473cd9649570c3e57374ba1c
data/README.md CHANGED
@@ -1,11 +1,6 @@
1
1
  # minimalist-theme
2
2
 
3
- Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
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
- TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
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/[USERNAME]/hello. 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.
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
 
@@ -7,6 +7,8 @@
7
7
  <title>{{ page.title }}</title>
8
8
  <link rel="stylesheet" href="/assets/css/tachyons.min.css">
9
9
  <link rel="stylesheet" href="/assets/css/styles.css">
10
+ {% feed_meta %}
11
+ {% seo %}
10
12
  </head>
11
13
 
12
14
  <body>
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.2
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
- rubygems_version: 3.0.6
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: []