jekyll-recker 1.3.0 → 1.5.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/figure.html +14 -0
- data/_includes/head.html +21 -0
- data/_includes/pager.html +13 -0
- data/_layouts/home.html +13 -9
- data/_layouts/page.html +13 -8
- data/_layouts/post.html +20 -28
- data/lib/jekyll-recker.rb +1 -0
- data/lib/jekyll_recker/filters.rb +15 -0
- data/lib/jekyll_recker/version.rb +1 -1
- metadata +6 -3
- data/_layouts/default.html +0 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: efd3587e247f83a9294d79e67abe0edf58dfe64aa413a18ee591bc2b5225687e
|
|
4
|
+
data.tar.gz: 28f7d50132af62ac1955dbc5657e54f1c4f67a996d34c79aded6add417a815c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df34b7690acd0abd08d79271e3c262e7367c184968bb6db587e681f0a5df3b62e7d1f54bd6f346c684e77541cf1f8acb979e55f9a460a4acac786d59ba48db3c
|
|
7
|
+
data.tar.gz: 0f90b95a366cbffde52647320aca1152322f36eccc5f791dd393696f1414da630624bb2bdadf54f632f378b1d3cb55af61b0d59308c704952fc344914df8fa44
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<figure>
|
|
2
|
+
{%- if include.url %}
|
|
3
|
+
<a href="{{ include.url }}">
|
|
4
|
+
{%- endif %}
|
|
5
|
+
<img alt="{{ alt | default: include.filename }}" src="{{ site.baseurl }}assets/images/{{ include.filename }}"/>
|
|
6
|
+
{%- if include.url %}
|
|
7
|
+
</a>
|
|
8
|
+
{%- endif %}
|
|
9
|
+
{%- if include.caption %}
|
|
10
|
+
<figcaption>
|
|
11
|
+
<p>{{ include.caption }}</p>
|
|
12
|
+
</figcaption>
|
|
13
|
+
{%- endif %}
|
|
14
|
+
</figure>
|
data/_includes/head.html
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{%- capture title %}{{ include.title | default: page.title }}{%- endcapture %}
|
|
2
|
+
{%- capture description %}{{ include.description | default: site.description }}{%- endcapture %}
|
|
3
|
+
{%- capture image %}{{ include.image | default: page.image }}{%- endcapture %}
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8"/>
|
|
6
|
+
<title>{{ title }} | {{ description }}</title>
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
|
+
<meta name="twitter:card" content="summary" />
|
|
9
|
+
<meta name="twitter:site" content="@{{ site.twitter_username }}" />
|
|
10
|
+
<meta name="twitter:title" content="{{ include.title }}" />
|
|
11
|
+
<meta name="twitter:description" content="{{ include.description }}" />
|
|
12
|
+
<meta property="og:url" content="{{ site.url }}{{ page.url }}" />
|
|
13
|
+
<meta property="og:type" content="article" />
|
|
14
|
+
<meta property="og:title" content="{{ title }}"/>
|
|
15
|
+
<meta property="og:description" content="{{ description }}" />
|
|
16
|
+
{%- if image %}
|
|
17
|
+
<meta name="twitter:image" content="{{ site.url }}{{ site.base_url }}/assets/images/{{ image }}"/>
|
|
18
|
+
<meta property="og:image" content="{{ site.url }}{{ site.base_url }}/assets/images/{{ image }}"/>
|
|
19
|
+
{%- endif %}
|
|
20
|
+
<link href="{{ site.baseurl }}/assets/jekyll-recker.css" rel="stylesheet"/>
|
|
21
|
+
</head>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<nav class="clearfix">
|
|
2
|
+
{%- if page.next -%}
|
|
3
|
+
<a href="{{ page.next.url }}">
|
|
4
|
+
⟵ {{ page.next.slug }}
|
|
5
|
+
</a>
|
|
6
|
+
{%- endif -%}
|
|
7
|
+
{%- if page.previous -%}
|
|
8
|
+
<a class="float-right" href="{{ page.previous.url }}">
|
|
9
|
+
{{ page.previous.slug }} ⟶
|
|
10
|
+
</a>
|
|
11
|
+
{%- endif -%}
|
|
12
|
+
</nav>
|
|
13
|
+
|
data/_layouts/home.html
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
{% include head.html title=site.title %}
|
|
4
|
+
<body>
|
|
5
|
+
{% include header.html title=site.title subtitle=site.description %}
|
|
6
|
+
<hr/>
|
|
7
|
+
{% include nav.html %}
|
|
8
|
+
<hr/>
|
|
9
|
+
{{ content }}
|
|
10
|
+
<hr/>
|
|
11
|
+
{% include footer.html %}
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
data/_layouts/page.html
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
{% include head.html title=site.title %}
|
|
4
|
+
<body>
|
|
5
|
+
{% include header.html title=page.title subtitle=page.description %}
|
|
6
|
+
<hr/>
|
|
7
|
+
{% include nav.html %}
|
|
8
|
+
<hr/>
|
|
9
|
+
{{ content }}
|
|
10
|
+
<hr/>
|
|
11
|
+
{% include footer.html %}
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
data/_layouts/post.html
CHANGED
|
@@ -1,28 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
{%
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
{
|
|
16
|
-
{
|
|
17
|
-
<
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
</a>
|
|
22
|
-
{%- endif -%}
|
|
23
|
-
{%- if page.previous -%}
|
|
24
|
-
<a class="float-right" href="{{ page.previous.url }}">
|
|
25
|
-
{{ page.previous.slug }} ⟶
|
|
26
|
-
</a>
|
|
27
|
-
</nav>
|
|
28
|
-
{%- endif -%}
|
|
1
|
+
{%- capture datestring %}{{ page.date | uyd_date }}{% endcapture %}
|
|
2
|
+
<!doctype html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
{% include head.html title=datestring description=page.title %}
|
|
5
|
+
<body>
|
|
6
|
+
{% include header.html title=datestring subtitle=page.title %}
|
|
7
|
+
<hr/>
|
|
8
|
+
{% include nav.html %}
|
|
9
|
+
<hr/>
|
|
10
|
+
{%- if page.image -%}
|
|
11
|
+
<br/>
|
|
12
|
+
{% include figure.html filename=page.image %}
|
|
13
|
+
<br/>
|
|
14
|
+
{%- endif -%}
|
|
15
|
+
{{ content }}
|
|
16
|
+
{% include pager.html %}
|
|
17
|
+
<hr/>
|
|
18
|
+
{% include footer.html %}
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
data/lib/jekyll-recker.rb
CHANGED
|
@@ -11,6 +11,7 @@ module Jekyll
|
|
|
11
11
|
require 'jekyll_recker/commands.rb'
|
|
12
12
|
require 'jekyll_recker/configuration.rb'
|
|
13
13
|
require 'jekyll_recker/error.rb'
|
|
14
|
+
require 'jekyll_recker/filters.rb'
|
|
14
15
|
require 'jekyll_recker/generators.rb'
|
|
15
16
|
require 'jekyll_recker/shell.rb'
|
|
16
17
|
require 'jekyll_recker/slack.rb'
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Jekyll
|
|
4
|
+
module Recker
|
|
5
|
+
# Filters
|
|
6
|
+
module Filters
|
|
7
|
+
# Converts a date object to standard Uhh Yeah Dude format.
|
|
8
|
+
def uyd_date(date)
|
|
9
|
+
date.strftime('%A, %B %d %Y')
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
Liquid::Template.register_filter(Jekyll::Recker::Filters)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-recker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Recker
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-05-
|
|
11
|
+
date: 2020-05-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bump
|
|
@@ -145,10 +145,12 @@ extra_rdoc_files: []
|
|
|
145
145
|
files:
|
|
146
146
|
- LICENSE
|
|
147
147
|
- README.md
|
|
148
|
+
- _includes/figure.html
|
|
148
149
|
- _includes/footer.html
|
|
150
|
+
- _includes/head.html
|
|
149
151
|
- _includes/header.html
|
|
150
152
|
- _includes/nav.html
|
|
151
|
-
-
|
|
153
|
+
- _includes/pager.html
|
|
152
154
|
- _layouts/home.html
|
|
153
155
|
- _layouts/page.html
|
|
154
156
|
- _layouts/post.html
|
|
@@ -156,6 +158,7 @@ files:
|
|
|
156
158
|
- lib/jekyll_recker/commands.rb
|
|
157
159
|
- lib/jekyll_recker/configuration.rb
|
|
158
160
|
- lib/jekyll_recker/error.rb
|
|
161
|
+
- lib/jekyll_recker/filters.rb
|
|
159
162
|
- lib/jekyll_recker/generators.rb
|
|
160
163
|
- lib/jekyll_recker/logger.rb
|
|
161
164
|
- lib/jekyll_recker/mixins.rb
|
data/_layouts/default.html
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8"/>
|
|
5
|
-
<title>{{ site.title }} | {{ page.title | default: site.description }}</title>
|
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
|
-
<link href="{{ site.baseurl }}/assets/jekyll-recker.css" rel="stylesheet"/>
|
|
8
|
-
</head>
|
|
9
|
-
<body>
|
|
10
|
-
{{ content }}
|
|
11
|
-
<hr/>
|
|
12
|
-
{% include footer.html %}
|
|
13
|
-
</body>
|
|
14
|
-
</html>
|