jekyll-dash 1.0.1 → 1.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f3431d7ffa06494dda2504e577158ffb4759040281b47ccc3b60da22a3a579f1
4
- data.tar.gz: 8590bd0a5152f89bdb6401ba0387408921c0a12b9530ace12de980e26fa4111b
3
+ metadata.gz: 3241eb012b38abf3e57f09e764cbdc6f60e65a138a7523a9b7ebd4a8ec54f2a5
4
+ data.tar.gz: 32f686ae9b6757eab8c4460af6efd096bfa1169c2317b4dc95de19863d7324b4
5
5
  SHA512:
6
- metadata.gz: b828de47546df159d9541ae32d202591e4bc111e6f25a0a836db16b552b183f4dc40268f1af4749c8dcbb64050ea9a559a303c1e970735e515cca6dcbf68e0a4
7
- data.tar.gz: 5dbbc1edb7f02d9cbb3d6411928902b75ce44e090334c79ba042f5046fac0a3aa2b504ea2b74457e182e8519352d54c0480e57da907a0d4cb60017a41214d6a3
6
+ metadata.gz: b50dcaf837a6f2a5e147a479b7bb46b74bd9269581bd728a8b96451efd7b229fdc20bdd4fd8532778cd19ad8575b66f6c55be9167d6ddd33e86e2dd5c6551742
7
+ data.tar.gz: 772806e79eeadac8f96ec4393bd17c7b198d11603f1f73952341dee374f7a97bbb43c8e33fa0bcd1d648e513b43b56adaa8fe72b7a0e25c2d9e0c439fe540555
data/_includes/head.html CHANGED
@@ -4,6 +4,7 @@
4
4
  <meta name="viewport" content="width=device-width, initial-scale=1">
5
5
  {%- seo -%}
6
6
  <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
7
+ <link rel="icon" type="image/png" href="{{ "/assets/favicon.png" | relative_url }}" />
7
8
  {%- feed_meta -%}
8
9
  {%- if jekyll.environment == 'production' and site.google_analytics -%}
9
10
  {%- include google-analytics.html -%}
@@ -1,32 +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 %}
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 %}
Binary file
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.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miguel Gonzalez Sanchez
@@ -115,7 +115,6 @@ executables: []
115
115
  extensions: []
116
116
  extra_rdoc_files: []
117
117
  files:
118
- - 404.html
119
118
  - LICENSE
120
119
  - LICENSE.txt
121
120
  - README.md
@@ -126,6 +125,7 @@ files:
126
125
  - _includes/header.html
127
126
  - _includes/pagination.html
128
127
  - _layouts/default.html
128
+ - _layouts/home.html
129
129
  - _layouts/page.html
130
130
  - _layouts/post.html
131
131
  - _layouts/tag_index.html
@@ -138,6 +138,7 @@ files:
138
138
  - _sass/dash/_layout.scss
139
139
  - _sass/dash/_syntax-highlighting.scss
140
140
  - assets/css/style.scss
141
+ - assets/favicon.png
141
142
  - assets/fonts/RobotoMono-Medium.eot
142
143
  - assets/fonts/RobotoMono-Medium.svg
143
144
  - assets/fonts/RobotoMono-Medium.ttf
@@ -146,7 +147,6 @@ files:
146
147
  - assets/fonts/VarelaRound-Regular.svg
147
148
  - assets/fonts/VarelaRound-Regular.ttf
148
149
  - assets/fonts/VarelaRound-Regular.woff
149
- - index.html
150
150
  homepage: https://bitbrain.github.io/jekyll-dash
151
151
  licenses:
152
152
  - MIT
data/404.html DELETED
@@ -1,24 +0,0 @@
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>