jekyll-theme-low 1.0.4 → 1.1.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/header.html +18 -3
- data/lib/low/version.rb +1 -1
- metadata +3 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28413d284c32e083e72e1b5ecb0092ed6520342dafdaf12705723f302cc613c4
|
|
4
|
+
data.tar.gz: f1bfa07b1ee2026c71b94a1026a54509391ed9dc8fbeaf669f8a44b05821ad6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c9d6cd4b05aa7dab4b26924f5526c61e4eb50c83346beafc71563da70933dd54800f2e9dde58a235b20235a2d42eaf926284ba052cac3c9621f11b57cddc99e4
|
|
7
|
+
data.tar.gz: 3792956b87132fdeafffdcef9d2d6da061bc6add1a9832d61e061856fd1a645aca38b80106c6f1091be94893fe96278e53de6babfd5f3f46a5600a0509dfc47f
|
data/_includes/header.html
CHANGED
|
@@ -4,9 +4,24 @@
|
|
|
4
4
|
<a href="{{ '/' | relative_url }}" class="title"><b>{{ site.title | upcase }}</b><br></a>
|
|
5
5
|
<hr>
|
|
6
6
|
<div style="text-align: justify; display: inline-block; width: 100%;">
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
{% if site.email %}
|
|
8
|
+
<a class="title" href="mailto:{{ site.email }}">CONTACT</a>
|
|
9
|
+
{% endif %}
|
|
10
|
+
{% if site.show_archive != false %}
|
|
11
|
+
<a class="title" href="{{ '/archive/' | relative_url }}">ARCHIVE</a>
|
|
12
|
+
{% endif %}
|
|
13
|
+
{% if site.show_rss != false %}
|
|
14
|
+
<a class="title" href="{{ site.feed.path | default: '/rss.xml' | relative_url }}">RSS</a>
|
|
15
|
+
{% endif %}
|
|
16
|
+
{% for page in site.pages %}
|
|
17
|
+
{% assign depth = page.path | split: "/" %}
|
|
18
|
+
{% if depth.size == 1 and page.title %}
|
|
19
|
+
{% assign ext = page.path | split: "." | last %}
|
|
20
|
+
{% if ext == "md" %}
|
|
21
|
+
<a class="title" href="{{ page.url | relative_url }}">{{ page.title | upcase }}</a>
|
|
22
|
+
{% endif %}
|
|
23
|
+
{% endif %}
|
|
24
|
+
{% endfor %}
|
|
10
25
|
</div>
|
|
11
26
|
</div>
|
|
12
27
|
</center>
|
data/lib/low/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-low
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Levent Kaya
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: jekyll
|
|
@@ -66,8 +65,6 @@ dependencies:
|
|
|
66
65
|
- - "~>"
|
|
67
66
|
- !ruby/object:Gem::Version
|
|
68
67
|
version: '1.4'
|
|
69
|
-
description:
|
|
70
|
-
email:
|
|
71
68
|
executables: []
|
|
72
69
|
extensions: []
|
|
73
70
|
extra_rdoc_files: []
|
|
@@ -107,7 +104,6 @@ homepage: https://github.com/lvntky/low
|
|
|
107
104
|
licenses:
|
|
108
105
|
- MIT
|
|
109
106
|
metadata: {}
|
|
110
|
-
post_install_message:
|
|
111
107
|
rdoc_options: []
|
|
112
108
|
require_paths:
|
|
113
109
|
- lib
|
|
@@ -122,8 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
122
118
|
- !ruby/object:Gem::Version
|
|
123
119
|
version: '0'
|
|
124
120
|
requirements: []
|
|
125
|
-
rubygems_version: 3.
|
|
126
|
-
signing_key:
|
|
121
|
+
rubygems_version: 3.6.7
|
|
127
122
|
specification_version: 4
|
|
128
123
|
summary: A minimal, retro-inspired Jekyll theme for engineers who care about the metal.
|
|
129
124
|
test_files: []
|