noir-for-jekyll 1.5.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb8aa59355f7fa88b4e79f35bfb31b00c2c87a5a0bef9578c9e17bf8faac0e55
4
- data.tar.gz: 4126099701ef4b3d958df57dabc804ebde8139cb037e59139954dccc7020a549
3
+ metadata.gz: d1c6ef63826546b7967cbad2cf1c0e7fcfe20c71b28d9f023327496f55b8f697
4
+ data.tar.gz: 4b529fc5636474abf4481b72f7a9db538c161c508b7bc0bd556198464d4ad40a
5
5
  SHA512:
6
- metadata.gz: a235be26be9c6fe2240fb1badcc0f9ccdc79213e99eb5791f1f13668447e142768bf99c226f5b87eb350890fea2a33514ba9531a109cd5fe5fc122b6a23075a2
7
- data.tar.gz: ea16a20fb70cedb720befd9d1c7867e9d4a230133ae35074163145227efbd81020b18e899c2daf32dcc8807b70cceb920c5d4c70da4ade04fc5812beb528beec
6
+ metadata.gz: 0f4c9c3040e5f95ab40b502fa7be79900cb9a0ff1a24b2c1a77aec6a13b94442b8b7847a617ccd2ba8f1614f5d1e58289325eeef20cc7ed66c779da1f3d176b0
7
+ data.tar.gz: 6e490405afd9e6e65593c07007e122725c6280dedfe2d252e05f2b72c3fbd7b8aaaed53d2f462aef07faa504549bcd686f173e796776a14fadb7fd9c5cd89e36
data/README.md CHANGED
@@ -1,7 +1,36 @@
1
+ Noir is a modern and customizable theme for Jekyll. Typography is paid close attention to and a dark mode friendly color scheme will be displayed automatically. It builds upon a standard Jekyll install in a number of ways.
2
+
1
3
  ### Demo
2
4
 
3
5
  You can see a live demo of Noir: [https://noir.essentialenemy.com](https://noir.essentialenemy.com)
4
6
 
7
+ ### Features
8
+
9
+ HTML, SASS and Config files are included for the theme's design and functionality.
10
+
11
+ A navigation area for linking to pages/posts or external URLs such as social media accounts.
12
+
13
+ 404, Archive, Category, Tag, Style and About pages.
14
+
15
+ Pagination, related posts and per-post navigation to older/newer entries.
16
+
17
+ HTML/CSS compression (minification).
18
+
19
+ A favicon and valid Atom syndicated feed.
20
+
21
+ Variables based accent color for the theme which can be changed easily.
22
+
23
+ Fully responsive, with an emphasis on mobile friendly design and interaction.
24
+
25
+ Enabled forced curly/smart quotes across all content with the `{ | smartify }` liquid filter.
26
+
27
+ A wide variety of HTML elements commonly used in online Markdown writing (blockquotes, headers, tables, boxes/buttons, figure captions, code blocks, footnotes) have been styled.
28
+
29
+ A single line added to a post's front matter can enable:
30
+ - Adding a category or tags to a post.
31
+ - The creation of *linked-list* style posts which link to external URLs, maintain a permalink and display a styled arrow to help indicate this.
32
+ - Additional date line listing the last date a post was modified on.
33
+
5
34
  ### Installation
6
35
 
7
36
  First you will need to setup your Ruby environment and add the Jekyll and Bundler gems to it.
data/_includes/head.html CHANGED
@@ -1,6 +1,7 @@
1
1
  <head>
2
2
  <meta charset="UTF-8">
3
3
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
4
+ <meta property="og:image" content="https://noir.essentialenemy.com/assets/iMessage.png" />
4
5
 
5
6
  <title>
6
7
  {% if page.title == "Home" %}
data/_layouts/post.html CHANGED
@@ -11,7 +11,7 @@ layout: default
11
11
  <h1 class="post-title">{{ page.title | smartify }}</h1>
12
12
  {% endif %}</h1>
13
13
 
14
- <time datetime="{{ page.date | date_to_xmlschema }}" class="post-date">{{ page.date | date_to_string }}
14
+ <time datetime="{{ page.date | date_to_xmlschema }}" class="post-date">{{ page.date | date_to_long_string: "ordinal", "US" }}
15
15
  {% if post %}
16
16
  {% assign categories = post.categories %}
17
17
  {% else %}
@@ -22,7 +22,7 @@ layout: default
22
22
  {% unless forloop.last %}&nbsp;{% endunless %}
23
23
  {% endfor %}
24
24
  {%- if page.last_modified_at -%}
25
- <br><i>Last updated on: {{ page.last_modified_at | date_to_string }}</i>
25
+ <br><i>Last updated on: {{ page.last_modified_at | {{ page.date | date_to_long_string: "ordinal", "US" }}</i>
26
26
  {%- endif -%}
27
27
  </time>{% if page.link %}<span class="external-link">External Link</span>{% endif %}
28
28
 
@@ -60,7 +60,7 @@ layout: default
60
60
  <li>
61
61
  <a href="{{ site.baseurl }}{{ post.url }}">
62
62
  {{ post.title | smartify }}
63
- <small><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time></small>
63
+ <small><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | {{ page.date | date_to_long_string: "ordinal", "US" }}</time></small>
64
64
  </a>
65
65
  </li>
66
66
  {% endfor %}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: noir-for-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Johnson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-15 00:00:00.000000000 Z
11
+ date: 2020-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -99,5 +99,5 @@ requirements: []
99
99
  rubygems_version: 3.1.2
100
100
  signing_key:
101
101
  specification_version: 4
102
- summary: Noir. An automatic dark mode adaptation of the Poole theme for Jekyll.
102
+ summary: Noir is a modern, responsive and customizable theme for Jekyll 4.
103
103
  test_files: []