jekyll-theme-paperwiki 0.1.7 → 0.1.9
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.
- checksums.yaml +4 -4
- data/_includes/collections_header.html +24 -13
- data/_includes/collections_sidebar.html +19 -9
- data/_includes/global_head.html +5 -1
- data/_includes/wiki_sidebar.html +1 -0
- data/_layouts/random.html +43 -0
- data/_layouts/search.html +2 -2
- data/_layouts/search_collections.html +12 -0
- data/_layouts/search_global.html +19 -0
- data/_layouts/work.html +3 -1
- metadata +7 -5
- data/_config.yml +0 -65
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28a4abf525f90769aa5bb61af47acf4a3aa6b7d268769d82e39003d0f6d9ed27
|
|
4
|
+
data.tar.gz: 33cccefdaf9d5b6d3eb986b4e9dc2cfff92bf4e784cb3a973dd5bf46231ee56c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43bd22b24f8f4df51d506376565f1ea679753586961eece2acf38cc3e4dce7c4a790514b967e0d474d61e39462db1ad64d012b3309ad173538e09b8640ec42d9
|
|
7
|
+
data.tar.gz: d0750463fd5edc0e41ffc25b32d3d8b00b393f9138f263bd0b20ba56a3a6c78194d62062af1f76ffc65eb0a3123444cf61cb50389be0ebe2632496fead1074bb
|
|
@@ -1,25 +1,36 @@
|
|
|
1
1
|
<section class="collections-header">
|
|
2
2
|
|
|
3
3
|
<section class="collections-stats">
|
|
4
|
-
{%
|
|
5
|
-
{%
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
{% if site.multi_projects %}
|
|
5
|
+
{% for item in site.data.projects %}
|
|
6
|
+
{% if page.url contains item.link %}
|
|
7
|
+
Total number of {{ item.name | downcase }} entries:
|
|
8
|
+
<strong>{{ site.[page.project].size }}</strong>
|
|
9
|
+
{% endif %}
|
|
10
|
+
{% endfor %}
|
|
11
|
+
{% else %}
|
|
12
|
+
Total number of wiki entries:
|
|
13
|
+
<strong>{{ site.wiki.size }}</strong>
|
|
14
|
+
{% endif %}
|
|
10
15
|
</section>
|
|
11
16
|
|
|
12
17
|
|
|
13
18
|
|
|
14
19
|
<section class="collections-search">
|
|
15
20
|
|
|
16
|
-
{%
|
|
17
|
-
{%
|
|
18
|
-
|
|
19
|
-
<
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
{% if site.multi_projects %}
|
|
22
|
+
{% for item in site.data.projects %}
|
|
23
|
+
{% if page.url contains item.link %}
|
|
24
|
+
<form action="{{ item.link }}:search" method="GET">
|
|
25
|
+
<input required type="search" class="collections-searchbar" placeholder="Search all {{ item.name | downcase }} entries" name="q">
|
|
26
|
+
</form>
|
|
27
|
+
{% endif %}
|
|
28
|
+
{% endfor %}
|
|
29
|
+
{% else %}
|
|
30
|
+
<form action="wiki:search" method="GET">
|
|
31
|
+
<input required type="search" class="collections-searchbar" placeholder="Search all wiki entries" name="q">
|
|
32
|
+
</form>
|
|
33
|
+
{% endif %}
|
|
23
34
|
|
|
24
35
|
</section>
|
|
25
36
|
|
|
@@ -1,15 +1,25 @@
|
|
|
1
1
|
<nav class="collections-sidebar">
|
|
2
2
|
|
|
3
|
-
{%
|
|
4
|
-
{%
|
|
3
|
+
{% if site.multi_projects %}
|
|
4
|
+
{% for item in site.data.projects %}
|
|
5
|
+
{% if page.url contains item.link %}
|
|
6
|
+
<ul>
|
|
7
|
+
<li><a href="{{ item.link }}">Main page</a></li>
|
|
8
|
+
<li><a href="{{ item.link }}:contents">Contents</a></li>
|
|
9
|
+
<li><a href="{{ item.link }}:all">All entries</a></li>
|
|
10
|
+
<li><a href="{{ item.link }}:random">Random article</a></li>
|
|
11
|
+
<li><a href="{{ item.link }}:about">About</a></li>
|
|
12
|
+
</ul>
|
|
13
|
+
{% endif %}
|
|
14
|
+
{% endfor %}
|
|
15
|
+
{% else %}
|
|
5
16
|
<ul>
|
|
6
|
-
<li><a href="
|
|
7
|
-
<li><a href="
|
|
8
|
-
<li><a href="
|
|
9
|
-
<li><a href="
|
|
10
|
-
<li><a href="
|
|
17
|
+
<li><a href="/wiki">Main page</a></li>
|
|
18
|
+
<li><a href="/wiki:contents">Contents</a></li>
|
|
19
|
+
<li><a href="/wiki:all">All entries</a></li>
|
|
20
|
+
<li><a href="/wiki:random">Random article</a></li>
|
|
21
|
+
<li><a href="/wiki:about">About</a></li>
|
|
11
22
|
</ul>
|
|
12
|
-
|
|
13
|
-
{% endfor %}
|
|
23
|
+
{% endif %}
|
|
14
24
|
|
|
15
25
|
</nav>
|
data/_includes/global_head.html
CHANGED
|
@@ -3,7 +3,11 @@
|
|
|
3
3
|
<meta charset="utf-8">
|
|
4
4
|
|
|
5
5
|
<title>
|
|
6
|
-
{% if page.title %}
|
|
6
|
+
{% if page.title %}
|
|
7
|
+
{{ page.title }} | {{ site.title }}
|
|
8
|
+
{% else %}
|
|
9
|
+
{{ site.title }}
|
|
10
|
+
{% endif %}
|
|
7
11
|
</title>
|
|
8
12
|
|
|
9
13
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
data/_includes/wiki_sidebar.html
CHANGED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
# Jekyll page that redirects to a random page, post or document
|
|
3
|
+
# https://github.com/jekylltools/jekyll-random-redirect
|
|
4
|
+
# v1.6
|
|
5
|
+
layout: page
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
{%- assign docs = site.posts -%}
|
|
9
|
+
|
|
10
|
+
{%- if site.random_redirect.pages == true -%}
|
|
11
|
+
{%- assign pages = site.documents | where_exp:"page","page.url != '/random/'" -%}
|
|
12
|
+
{%- assign docs = docs | concat: pages -%}
|
|
13
|
+
{%- endif -%}
|
|
14
|
+
|
|
15
|
+
{%- if site.random_redirect.documents == true -%}
|
|
16
|
+
{%- assign docs = docs | concat: site.documents | uniq -%}
|
|
17
|
+
{%- endif -%}
|
|
18
|
+
|
|
19
|
+
<script type="text/javascript">
|
|
20
|
+
|
|
21
|
+
var urls=[];
|
|
22
|
+
|
|
23
|
+
{% for doc in docs -%}
|
|
24
|
+
urls.push("{{ doc.url | absolute_url }}");
|
|
25
|
+
{% endfor -%}
|
|
26
|
+
|
|
27
|
+
var url = urls[Math.floor(Math.random()*urls.length)];
|
|
28
|
+
|
|
29
|
+
var link = document.createElement('link');
|
|
30
|
+
link.setAttribute('rel', 'canonical');
|
|
31
|
+
link.setAttribute('href', url);
|
|
32
|
+
document.head.appendChild(link);
|
|
33
|
+
|
|
34
|
+
if (typeof IE_fix != "undefined") {
|
|
35
|
+
document.write("Redirecting...");
|
|
36
|
+
var referLink = document.createElement("a");
|
|
37
|
+
referLink.href = url;
|
|
38
|
+
document.body.appendChild(referLink);
|
|
39
|
+
referLink.click();
|
|
40
|
+
} else {
|
|
41
|
+
window.location.replace(url);
|
|
42
|
+
}
|
|
43
|
+
</script>
|
data/_layouts/search.html
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: search
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<script>
|
|
6
|
+
window.pages = {
|
|
7
|
+
{% if site.multi_projects %}
|
|
8
|
+
{% for page in site.documents %}
|
|
9
|
+
{% include search_results.html %}
|
|
10
|
+
{% unless forloop.last %},{% endunless %}
|
|
11
|
+
{% endfor %}
|
|
12
|
+
{% else %}
|
|
13
|
+
{% for page in site.wiki %}
|
|
14
|
+
{% include search_results.html %}
|
|
15
|
+
{% unless forloop.last %},{% endunless %}
|
|
16
|
+
{% endfor %}
|
|
17
|
+
{% endif %}
|
|
18
|
+
};
|
|
19
|
+
</script>
|
data/_layouts/work.html
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-paperwiki
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- pomeloshark
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-01-
|
|
11
|
+
date: 2023-01-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '4.
|
|
19
|
+
version: '4.3'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '4.
|
|
26
|
+
version: '4.3'
|
|
27
27
|
description:
|
|
28
28
|
email:
|
|
29
29
|
executables: []
|
|
@@ -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
|
|
@@ -50,8 +49,11 @@ files:
|
|
|
50
49
|
- _layouts/page.html
|
|
51
50
|
- _layouts/portal.html
|
|
52
51
|
- _layouts/post.html
|
|
52
|
+
- _layouts/random.html
|
|
53
53
|
- _layouts/reference_desk.html
|
|
54
54
|
- _layouts/search.html
|
|
55
|
+
- _layouts/search_collections.html
|
|
56
|
+
- _layouts/search_global.html
|
|
55
57
|
- _layouts/wiki.html
|
|
56
58
|
- _layouts/work.html
|
|
57
59
|
- _plugins/blockquote.rb
|
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"
|