jekyll-theme-monty 1.0.1 → 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/CHANGELOG.md +12 -0
- data/README.md +1 -1
- data/_config.yml +2 -0
- data/_includes/footer.html +4 -2
- data/_layouts/home.html +2 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14acf4c8b2d013b5bf5177ca846aeed8968bf4bc1f9699eff486d4ddae9a1e4c
|
4
|
+
data.tar.gz: 39ed3268a1b1e1ca8313e390468c372024e81d6e9d21645362adf0e81fffc8d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10b85cb67db3a73b9870a58a4a8659082be0aa5f94e13dae8dba31ea1d7adea98c5afa44ed27a091dd4252311f93cb6de7e072ebc8e9441f62dc1a1b2b19ddec
|
7
|
+
data.tar.gz: 768dfac228b9b64067f8b8a53adbd8b2d55f195429bae8cff5c452eb9d87d576bc5f90a099d22d010fc9a5c14c59480d6c3562a1ec73500e765ad23768684be6
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [1.1.0]
|
8
|
+
|
9
|
+
### Fixed
|
10
|
+
|
11
|
+
- Downgrade Jekyll version in .gemspec file
|
12
|
+
|
13
|
+
## [1.0.2]
|
14
|
+
|
15
|
+
### Fixed
|
16
|
+
|
17
|
+
- Project configuration files
|
18
|
+
|
7
19
|
## [1.0.1]
|
8
20
|
|
9
21
|
### Fixed
|
data/README.md
CHANGED
@@ -14,7 +14,7 @@ Monty is designed for [blogging on GitHub Pages](https://docs.github.com/en/page
|
|
14
14
|
To use the Monty theme, add the following to your site's `_config.yaml`:
|
15
15
|
|
16
16
|
```yaml
|
17
|
-
remote_theme: brolun/jekyll-theme-monty@1.0.
|
17
|
+
remote_theme: brolun/jekyll-theme-monty@1.0.2
|
18
18
|
plugins:
|
19
19
|
- jekyll-remote-theme
|
20
20
|
```
|
data/_config.yml
CHANGED
data/_includes/footer.html
CHANGED
@@ -13,13 +13,15 @@
|
|
13
13
|
<ul>
|
14
14
|
{% if page.previous.url %}
|
15
15
|
<li>
|
16
|
-
<a class="prev" href="{{page.previous.url}}"
|
16
|
+
<a class="prev" href="{{ page.previous.url | relative_url }}"
|
17
17
|
>« {{page.previous.title}}
|
18
18
|
</a>
|
19
19
|
</li>
|
20
20
|
{% endif %} {% if page.next.url %}
|
21
21
|
<li>
|
22
|
-
<a class="next" href="{{page.next.url}}"
|
22
|
+
<a class="next" href="{{ page.next.url | relative_url }}"
|
23
|
+
>{{page.next.title}} »
|
24
|
+
</a>
|
23
25
|
</li>
|
24
26
|
{% endif %}
|
25
27
|
</ul>
|
data/_layouts/home.html
CHANGED
@@ -3,8 +3,7 @@ layout: default
|
|
3
3
|
---
|
4
4
|
|
5
5
|
<!-- {% include language.liquid %} -->
|
6
|
-
{
|
7
|
-
<h1>{{ title }}</h1>
|
6
|
+
<h1>{{ page.title | default: site.title }}</h1>
|
8
7
|
<section>
|
9
8
|
<h2>{{ language.string.about }}</h2>
|
10
9
|
{{ content }}
|
@@ -16,7 +15,7 @@ layout: default
|
|
16
15
|
{% for post in site.posts %}
|
17
16
|
<li>
|
18
17
|
<span class="date">{{ post.date | date: "%F" }}</span>:
|
19
|
-
<a href="{{ post.url }}">{{ post.title }}</a>
|
18
|
+
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
20
19
|
</li>
|
21
20
|
{% endfor %}
|
22
21
|
</ul>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-monty
|
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
|
- brolun
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '3.10'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '3.10'
|
27
27
|
description:
|
28
28
|
email:
|
29
29
|
- luna.brodersen@gmail.com
|