picklecore 0.15.5 → 0.16.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.
- checksums.yaml +4 -4
- data/_includes/components/sidebar.html +2 -2
- data/_layouts/archive.html +24 -21
- data/_layouts/default.html +2 -2
- data/_layouts/error.html +5 -7
- data/_layouts/post.html +14 -12
- data/assets/css/error-page.css +1 -1
- data/assets/css/main.css +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fd2e51cbf3d15028e1c3951dd40b1d45280fdb40b89c92b0d8b07148cf50e810
|
|
4
|
+
data.tar.gz: 7b01e3f69d2cf2ce687eaf30cb80e115f8161106860ae3a49cd2ffe34fe196c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e19464f9d3b7be28f1d7c33f237b4d2d284c9e1ab111d35ace26025abc0cc68d306f3f386528a69936586631787e21ca2692b401a80d2ba3ab1e7c86b8bbc8b
|
|
7
|
+
data.tar.gz: 9731226f3678446753842239a76cf35e7df343e75d6b978f97813f91b55e3988e2e0e3c428bb19b1442e07f5224c65fec77e83e828fca46c0504b0bee28d8591
|
data/_layouts/archive.html
CHANGED
|
@@ -4,25 +4,28 @@ title: "Post Archives"
|
|
|
4
4
|
---
|
|
5
5
|
{% include components/binds/sidebar-anchor.html %}
|
|
6
6
|
|
|
7
|
-
{% if page.type == "year" %}
|
|
8
|
-
<h1>Posts from {{ page.date | date: "%Y" }}</h1>
|
|
9
|
-
{% endif %}
|
|
10
|
-
{% if page.type == "month" %}
|
|
11
|
-
<h1>Posts from {{ page.date | date: "%-d, %Y" }}</h1>
|
|
12
|
-
{% endif %}
|
|
13
|
-
{% if page.type == "day" %}
|
|
14
|
-
<h1>Posts from {{ page.date | date: "%b %-d, %Y" }}</h1>
|
|
15
|
-
{% endif %}
|
|
16
|
-
{% if page.type == "tag" or page.type == "category" %}
|
|
17
|
-
<h1>Posts with {{ page.type }} '{{ page.title }}'</h1>
|
|
18
|
-
{% endif %}
|
|
19
7
|
|
|
20
|
-
<
|
|
21
|
-
{%
|
|
22
|
-
<
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
{%
|
|
28
|
-
</
|
|
8
|
+
<main>
|
|
9
|
+
{% if page.type == "year" %}
|
|
10
|
+
<h1>Posts from {{ page.date | date: "%Y" }}</h1>
|
|
11
|
+
{% endif %}
|
|
12
|
+
{% if page.type == "month" %}
|
|
13
|
+
<h1>Posts from {{ page.date | date: "%-d, %Y" }}</h1>
|
|
14
|
+
{% endif %}
|
|
15
|
+
{% if page.type == "day" %}
|
|
16
|
+
<h1>Posts from {{ page.date | date: "%b %-d, %Y" }}</h1>
|
|
17
|
+
{% endif %}
|
|
18
|
+
{% if page.type == "tag" or page.type == "category" %}
|
|
19
|
+
<h1>Posts with {{ page.type }} '{{ page.title }}'</h1>
|
|
20
|
+
{% endif %}
|
|
21
|
+
|
|
22
|
+
<ul class="posts">
|
|
23
|
+
{% for post in page.posts %}
|
|
24
|
+
<li>
|
|
25
|
+
<span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
|
|
26
|
+
<span>-</span>
|
|
27
|
+
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
|
28
|
+
</li>
|
|
29
|
+
{% endfor %}
|
|
30
|
+
</ul>
|
|
31
|
+
</main>
|
data/_layouts/default.html
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
<link rel="stylesheet" href="/assets/css/main.css"></link>
|
|
6
6
|
</head>
|
|
7
7
|
<body>
|
|
8
|
-
<
|
|
8
|
+
<main class="content">
|
|
9
9
|
{{ content }}
|
|
10
|
-
</
|
|
10
|
+
</main>
|
|
11
11
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
|
|
12
12
|
<script src="/assets/js/main.js"></script>
|
|
13
13
|
</body>
|
data/_layouts/error.html
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
|
-
{% include
|
|
4
|
+
{% include metadata/metadata.html pagename=page.title %}
|
|
5
5
|
<link rel="stylesheet" href="/assets/css/error.css"></link>
|
|
6
6
|
</head>
|
|
7
7
|
<body>
|
|
8
|
-
<
|
|
9
|
-
<h1 class="animated fadeInRightBig">{{
|
|
8
|
+
<main>
|
|
9
|
+
<h1 class="animated fadeInRightBig">{{ page.message | default: "Uh oh..." }}</h1>
|
|
10
10
|
<p class="animated delay fadeInLeftBig">
|
|
11
11
|
Error {{ page.code }} ({{ page.desc }})
|
|
12
|
-
{
|
|
13
|
-
- If you think this is a mistake on our part, please <a href="mailto:{{ site.email }}">send us an email</a>.
|
|
14
|
-
{% endif %}
|
|
12
|
+
{{ content }}
|
|
15
13
|
</p>
|
|
16
|
-
</
|
|
14
|
+
</main>
|
|
17
15
|
</body>
|
|
18
16
|
</html>
|
data/_layouts/post.html
CHANGED
|
@@ -3,19 +3,21 @@ layout: default
|
|
|
3
3
|
---
|
|
4
4
|
{% include components/binds/sidebar-anchor.html %}
|
|
5
5
|
|
|
6
|
-
<
|
|
6
|
+
<main>
|
|
7
|
+
<h1>{{ page.title }}</h1>
|
|
7
8
|
|
|
8
|
-
<div>
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
<br />
|
|
12
|
-
<i class="fas fa-calendar"></i> Date: {{ page.date | date: date_format }}
|
|
13
|
-
{% if page.tag %}
|
|
9
|
+
<div>
|
|
10
|
+
{%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
|
|
11
|
+
<i class="fas fa-user-edit"></i> Author: {{ page.author | default: "Administrator" }}
|
|
14
12
|
<br />
|
|
15
|
-
<i class="
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
<i class="fas fa-calendar"></i> Date: {{ page.date | date: date_format }}
|
|
14
|
+
{% if page.tag %}
|
|
15
|
+
<br />
|
|
16
|
+
<i class="fa fa-tag"></i> Tag: {{ page.tag }}
|
|
17
|
+
{% endif %}
|
|
18
|
+
</div>
|
|
18
19
|
|
|
19
|
-
<hr />
|
|
20
|
+
<hr />
|
|
20
21
|
|
|
21
|
-
{{ content }}
|
|
22
|
+
{{ content }}
|
|
23
|
+
</main>
|
data/assets/css/error-page.css
CHANGED
data/assets/css/main.css
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: picklecore
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.16.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Reece Dunham
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2020-01-
|
|
12
|
+
date: 2020-01-27 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: jekyll
|
|
@@ -157,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
157
157
|
- !ruby/object:Gem::Version
|
|
158
158
|
version: '0'
|
|
159
159
|
requirements: []
|
|
160
|
-
rubygems_version: 3.
|
|
160
|
+
rubygems_version: 3.1.2
|
|
161
161
|
signing_key:
|
|
162
162
|
specification_version: 4
|
|
163
163
|
summary: A Jekyll theme built to create personal and small websites, but can easily
|