jekyll-category-pages-test-theme 1.0.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a5a2bd4ef0578365189eb69941e1ff076ead8f315d9a1941e04dad7f5a94b0c7
4
+ data.tar.gz: 7b4904f2041ecc6967b88382bd1ac853a52c45917d8a221f10b7d371ac8e1904
5
+ SHA512:
6
+ metadata.gz: b206cb6be09508cc5c39497b1432e66911ef456d88157717eedf18bee52968dc015ca64c1c8813be557d43b30113817ce0c63b2489d41ac4d4cd0270a6a3d681
7
+ data.tar.gz: 1c755c53d939c432dff0164c430c0445a8b38fbeea7d7374ccbe406261e0a7e2736a27c684a0f2de6f1c02f8271e815f2e725c1438aec39c72db47c70114cf0a
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) since 2017 by Wolfram Schroers
4
+ Written by Wolfram Schroers <Wolfram.Schroers -at- field-theory.org>
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
@@ -0,0 +1,4 @@
1
+ # jekyll-category-pages-test-theme
2
+
3
+ This is a test theme for testing gem-based and remote theme for [jekyll-category-pages](https://github.com/field-theory/jekyll-category-pages)
4
+
@@ -0,0 +1 @@
1
+ {{ content }}
@@ -0,0 +1,17 @@
1
+ ---
2
+ layout: basic
3
+ ---
4
+ $page_title = '{{ page.title }}'
5
+ $page_category = '{{ page.category }}'
6
+ $page_total_posts = {{ page.total_posts }}
7
+ $page_posts_title = [ {% for post in page.posts %}"{{ post.title }}", {% endfor %}]
8
+ $page_posts_url = [ {% for post in page.posts %}"{{ post.url }}", {% endfor %}]
9
+ {% if page.paginator %}{% assign paginator = page.paginator %}$page_paginator_total_posts = {{ paginator.total_posts }}
10
+ $page_paginator_page = {{ paginator.page }}
11
+ $page_paginator_per_page = {{ paginator.per_page }}
12
+ $page_paginator_total_pages = {{ paginator.total_pages }}
13
+ $page_paginator_previous_page = {% if paginator.previous_page %}{{ paginator.previous_page }}{% else %}nil{% endif %}
14
+ $page_paginator_next_page = {% if paginator.next_page %}{{ paginator.next_page }}{% else %}nil{% endif %}
15
+ $page_paginator_previous_page_path = '{{ paginator.previous_page_path }}'
16
+ $page_paginator_next_page_path = '{{ paginator.next_page_path }}'
17
+ $page_paginator_posts_title = [ {% for post in paginator.posts limit:paginator.per_page %}"{{ post.title }}", {% endfor %}]{% endif %}
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-category-pages-test-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Dr. Wolfram Schroers
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-09-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.0'
27
+ description: 'This is a test theme for testing gem-based and remote theme for jekyll-category-pages
28
+ at https://github.com/field-theory/jekyll-category-pages
29
+
30
+ '
31
+ email: Wolfram.Schroers@field-theory.org
32
+ executables: []
33
+ extensions: []
34
+ extra_rdoc_files: []
35
+ files:
36
+ - LICENSE
37
+ - README.md
38
+ - _layouts/basic.html
39
+ - _layouts/category_index.html
40
+ homepage: https://github.com/field-theory/jekyll-category-pages
41
+ licenses:
42
+ - MIT
43
+ metadata: {}
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubyforge_project:
60
+ rubygems_version: 2.7.6
61
+ signing_key:
62
+ specification_version: 4
63
+ summary: This is a test theme for testing gem-based and remote theme for jekyll-category-pages.
64
+ test_files: []