jekyll-theme-paperwiki 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. metadata +1 -2
  3. data/_config.yml +0 -65
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c223657c7a92a92611c44734203824b2e0c0667db22f09a1ad966c9c981d9fe6
4
- data.tar.gz: 6d7dcbdd611f8f99c6a9cbf12042689b697382307cc157ceee4d901d79fc90c1
3
+ metadata.gz: 0d7088224b53b88e5d0f5d0ee3ec2b55ac2cf9e2b882b61381ef8091d1cbbad0
4
+ data.tar.gz: 9a77ad7e881558de058e943372a6c0d5b6a4eb9c3499f845e8a20e0f4800b1d7
5
5
  SHA512:
6
- metadata.gz: 44aa2cd80d7c98f526f1e3fc7b87f09d41a75ff6c1778a37bdbfc5730d4edded5cae4dd0388561d34e4e53d887808c8591dd0716dc3bb13978c157015fd9ff9a
7
- data.tar.gz: 8f7a1712bc72299e0eb3d9b89795d6c04f32122d22eb8673d4d130076f4e16fd53b9c5e4292cd1ded8f8b99102db44b80ab26dcc68d05de2214f1a9af46cb738
6
+ metadata.gz: 3fd3d64a04e3226d66f09dd91afa30955030677f938a6831d04c8fd827bff37a9b2126daf4f4ce94ff337143bab2c3525261ac4709fddd79b9ebb743007b438d
7
+ data.tar.gz: '0076686a08e9fc74cf124e2b0c465bfec2bdbfa0434105a442857a09d97f12f55067af2b7dbdd925c4f1d1e534f761ee46bb7a459352873a0811e656a5477718'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-paperwiki
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - pomeloshark
@@ -32,7 +32,6 @@ extra_rdoc_files: []
32
32
  files:
33
33
  - LICENSE.txt
34
34
  - README.md
35
- - _config.yml
36
35
  - _data/navigation.yml
37
36
  - _includes/collections_header.html
38
37
  - _includes/collections_sidebar.html
data/_config.yml DELETED
@@ -1,65 +0,0 @@
1
- # Build settings
2
- include: ['_pages'] # forces custom pages to be organized into their own directory
3
-
4
- # Plugins
5
- # plugins:
6
- # - jekyll-ipa
7
-
8
- random_redirect:
9
- pages: true
10
-
11
- multi_projects: false
12
- entry_tags_top: true
13
-
14
-
15
-
16
- # Sets the collections directory and defines your collections.
17
- collections_dir: collections
18
- collections:
19
- wiki:
20
- output: true
21
- permalink: /:collection/:name
22
- works:
23
- output: true
24
- permalink: /:collection/:name
25
- grammars:
26
- output: true
27
- permalink: /:collection/:name
28
-
29
-
30
-
31
- # Front matter defaults, so you don't need to set layouts on every new page.
32
- # As long as pages are in the correct folder, they'll automatically have the
33
- # correct layout. You can override this via each page's front matter.
34
- defaults:
35
- -
36
- scope:
37
- path: "" # an empty string here means all files in the project
38
- type: "pages"
39
- values:
40
- layout: "page" # all pages will have the page.html layout unless overridden
41
- permalink: "/:path/:basename"
42
- -
43
- scope:
44
- path: "" # an empty string here means all files in the project
45
- type: "posts"
46
- values:
47
- layout: "post"
48
- -
49
- scope:
50
- path: "_wiki" # all pages in the wiki folder
51
- type: "wiki"
52
- values:
53
- layout: "wiki"
54
- -
55
- scope:
56
- path: "_works" # all pages in the works folder
57
- type: "works"
58
- values:
59
- layout: "work"
60
- -
61
- scope:
62
- path: "_grammars" # all pages in the grammars folder
63
- type: "grammars"
64
- values:
65
- layout: "grammar"