jekyll-dash 1.0.0 → 1.0.1

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/404.html +24 -0
  3. data/index.html +32 -0
  4. metadata +3 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 84464e9b4791869cc3fca60de4892bccf18a97314cf55e9dc79e5da1bededa30
4
- data.tar.gz: 9a2f697eedef9858c13b34aef27a7f5a833e3321d11099ba64e0ce4f4e9ba2df
3
+ metadata.gz: f3431d7ffa06494dda2504e577158ffb4759040281b47ccc3b60da22a3a579f1
4
+ data.tar.gz: 8590bd0a5152f89bdb6401ba0387408921c0a12b9530ace12de980e26fa4111b
5
5
  SHA512:
6
- metadata.gz: e9338a1769a48ccdbc816fd113a1c802e2d017bd7301d02e60f1c9bcc7dabf7d532261c6bba99613db0b75c6b8ff94e39e4ae816815285d769260342c06f6fc3
7
- data.tar.gz: 9b959ca946464f0392d8ced3d814f5fa0d25eb0731eda8d514390d9b6ff9cd32b654f77f58d80734e62091d25548740bc9351adbeb98b8bf889b41dfa2fb92be
6
+ metadata.gz: b828de47546df159d9541ae32d202591e4bc111e6f25a0a836db16b552b183f4dc40268f1af4749c8dcbb64050ea9a559a303c1e970735e515cca6dcbf68e0a4
7
+ data.tar.gz: 5dbbc1edb7f02d9cbb3d6411928902b75ce44e090334c79ba042f5046fac0a3aa2b504ea2b74457e182e8519352d54c0480e57da907a0d4cb60017a41214d6a3
data/404.html ADDED
@@ -0,0 +1,24 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <style type="text/css" media="screen">
6
+ .container {
7
+ margin: 10px auto;
8
+ max-width: 600px;
9
+ text-align: center;
10
+ }
11
+ h1 {
12
+ margin: 30px 0;
13
+ font-size: 4em;
14
+ line-height: 1;
15
+ letter-spacing: -1px;
16
+ }
17
+ </style>
18
+
19
+ <div class="container">
20
+ <h1>404</h1>
21
+
22
+ <p><strong>Page not found :(</strong></p>
23
+ <p>The requested page could not be found.</p>
24
+ </div>
data/index.html ADDED
@@ -0,0 +1,32 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ {% include author.html %}
5
+ {% assign posts_count = paginator.posts | size %}
6
+ {% if posts_count > 0 %}
7
+ <h1>Recent blog articles</h1>
8
+ <div class="post-links">
9
+ {% for post in paginator.posts %}
10
+ <div class="post-link-wrapper">
11
+ <a href="{{ post.url | relative_url }}" class="post-link">{{ post.title }}</a>
12
+ <div class="post-meta">
13
+
14
+ <div class="post-tags">
15
+ {% for tag in post.tags %}
16
+ <a class="tag" href="/tag/{{ tag }}/">{{ tag }}</a>
17
+ {% endfor %}
18
+ </div>
19
+ {% if site.date_format %}
20
+ {{ post.date | date: site.date_format }}
21
+ {% else %}
22
+ {{ post.date | date: "%b %-d, %Y" }}
23
+ {% endif %}
24
+ </div>
25
+ </div>
26
+ {% endfor %}
27
+ </div>
28
+
29
+ {% include pagination.html %}
30
+ {% else %}
31
+ <div>No posts yet.</div>
32
+ {% endif %}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-dash
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miguel Gonzalez Sanchez
@@ -115,6 +115,7 @@ executables: []
115
115
  extensions: []
116
116
  extra_rdoc_files: []
117
117
  files:
118
+ - 404.html
118
119
  - LICENSE
119
120
  - LICENSE.txt
120
121
  - README.md
@@ -145,6 +146,7 @@ files:
145
146
  - assets/fonts/VarelaRound-Regular.svg
146
147
  - assets/fonts/VarelaRound-Regular.ttf
147
148
  - assets/fonts/VarelaRound-Regular.woff
149
+ - index.html
148
150
  homepage: https://bitbrain.github.io/jekyll-dash
149
151
  licenses:
150
152
  - MIT