jekyll-theme-monty 1.2.1 → 1.2.3
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 +14 -0
- data/README.md +1 -1
- data/_config.yml +1 -1
- data/_includes/footer.html +1 -1
- data/_layouts/default.html +3 -6
- data/_sass/main.scss +16 -3
- data/_sass/variables.scss +4 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fefa320a61a8a9fb35d493415767ee98f489af207c01abe76bbb79d954eebf40
|
4
|
+
data.tar.gz: 2f2eecd6db5edc7816e8f57138666ebffea67fc18375cedd51c2af649e8012fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88e94c6ee4d58b0f6e050abd9db423612386f781735d71a5b84c7f2b02cbb97accd7dd561a5e16fadd6219c3ddff4846e433a24264e1f641de867ea83afee9a7
|
7
|
+
data.tar.gz: 8f14d01dc8d1a996dee927a769d7e7d24b5b397ce6c29094c33a5588e5f24a394838f5ae1e80fec87ecc60184ac5d09c855f9705f25cd1ccfb1c9b6b99d953ec
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,20 @@ 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.2.3]
|
8
|
+
|
9
|
+
### Fixed
|
10
|
+
|
11
|
+
- Set max width and height for images and figures
|
12
|
+
|
13
|
+
## [1.2.2]
|
14
|
+
|
15
|
+
### Fixed
|
16
|
+
|
17
|
+
- Stylesheet linking
|
18
|
+
- Replace language tag with locale
|
19
|
+
- Change icon in footer
|
20
|
+
|
7
21
|
## [1.2.1]
|
8
22
|
|
9
23
|
### Fixed
|
data/README.md
CHANGED
data/_config.yml
CHANGED
data/_includes/footer.html
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
<li>© {{ 'now' | date: "%Y" }} {{ site.title }}</li>
|
21
21
|
<li>⌘ <a href="{{ '/feed.xml' | relative_url }}">RSS</a></li>
|
22
22
|
<li>
|
23
|
-
|
23
|
+
⛭ <a href="https://jekyllrb.com/" target="_blank">Jekyll</a> &
|
24
24
|
<a href="https://github.com/brolun/jekyll-theme-monty" target="_blank"
|
25
25
|
>Monty</a
|
26
26
|
>
|
data/_layouts/default.html
CHANGED
@@ -2,15 +2,12 @@
|
|
2
2
|
---
|
3
3
|
|
4
4
|
<!DOCTYPE html>
|
5
|
-
<html
|
5
|
+
<html
|
6
|
+
lang="{{ page.locale | default: site.locale | default: 'en' | slice: 0 , 2 }}"
|
7
|
+
>
|
6
8
|
<head>
|
7
9
|
<meta charset="UTF-8" />
|
8
10
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
9
|
-
<link
|
10
|
-
rel="preload"
|
11
|
-
href="{{ '/assets/css/styles.css' | relative_url }}"
|
12
|
-
as="style"
|
13
|
-
/>
|
14
11
|
<link
|
15
12
|
rel="stylesheet"
|
16
13
|
href="{{ '/assets/css/styles.css' | relative_url }}"
|
data/_sass/main.scss
CHANGED
@@ -3,7 +3,7 @@ html {
|
|
3
3
|
color: $primary;
|
4
4
|
font-family: "Jost";
|
5
5
|
line-height: 1.5;
|
6
|
-
max-width:
|
6
|
+
max-width: $width;
|
7
7
|
padding: 16px;
|
8
8
|
}
|
9
9
|
:is(h2, h3, h4, h5, h6) {
|
@@ -18,7 +18,7 @@ footer ul {
|
|
18
18
|
align-items: left;
|
19
19
|
display: flex;
|
20
20
|
flex-wrap: wrap;
|
21
|
-
gap:
|
21
|
+
gap: $gap;
|
22
22
|
list-style-type: none;
|
23
23
|
margin: 0;
|
24
24
|
padding: 0;
|
@@ -38,7 +38,20 @@ footer hr {
|
|
38
38
|
|
39
39
|
// Images
|
40
40
|
img {
|
41
|
-
max-width:
|
41
|
+
max-width: calc(0.8 * #{$width});
|
42
|
+
max-height: calc(0.6 * #{$width});
|
43
|
+
}
|
44
|
+
|
45
|
+
figure {
|
46
|
+
display: flex;
|
47
|
+
flex-direction: column;
|
48
|
+
align-items: center;
|
49
|
+
gap: $gap;
|
50
|
+
}
|
51
|
+
|
52
|
+
figure figcaption {
|
53
|
+
max-width: calc(0.8 * #{$width});
|
54
|
+
font-size: 95%;
|
42
55
|
}
|
43
56
|
|
44
57
|
// Lists
|
data/_sass/variables.scss
CHANGED
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.2.
|
4
|
+
version: 1.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- brolun
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -38,7 +38,7 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
description:
|
41
|
+
description:
|
42
42
|
email:
|
43
43
|
- luna.brodersen@gmail.com
|
44
44
|
executables: []
|
@@ -88,7 +88,7 @@ homepage: https://github.com/brolun/jekyll-theme-monty
|
|
88
88
|
licenses:
|
89
89
|
- MIT
|
90
90
|
metadata: {}
|
91
|
-
post_install_message:
|
91
|
+
post_install_message:
|
92
92
|
rdoc_options: []
|
93
93
|
require_paths:
|
94
94
|
- lib
|
@@ -104,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
104
|
version: '0'
|
105
105
|
requirements: []
|
106
106
|
rubygems_version: 3.5.11
|
107
|
-
signing_key:
|
107
|
+
signing_key:
|
108
108
|
specification_version: 4
|
109
109
|
summary: Monty is a Jekyll theme inspired by CSS Naked Day.
|
110
110
|
test_files: []
|