jekyll-theme-monty 1.0.2 → 1.2.1
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 +33 -0
- data/README.md +8 -27
- data/_config.yml +0 -2
- data/_includes/footer.html +17 -25
- data/_includes/header.html +3 -0
- data/_layouts/default.html +8 -6
- data/_layouts/home.html +16 -19
- data/_layouts/post.html +8 -3
- data/_sass/fonts.scss +32 -16
- data/_sass/main.scss +23 -12
- data/_sass/syntax.scss +1 -1
- data/assets/fonts/DraftingMono-Bold.woff +0 -0
- data/assets/fonts/DraftingMono-Bold.woff2 +0 -0
- data/assets/fonts/DraftingMono-BoldItalic.woff +0 -0
- data/assets/fonts/DraftingMono-BoldItalic.woff2 +0 -0
- data/assets/fonts/DraftingMono-Italic.woff +0 -0
- data/assets/fonts/DraftingMono-Italic.woff2 +0 -0
- data/assets/fonts/DraftingMono-Regular.woff +0 -0
- data/assets/fonts/DraftingMono-Regular.woff2 +0 -0
- data/assets/fonts/Jost-400-Book.woff +0 -0
- data/assets/fonts/Jost-400-Book.woff2 +0 -0
- data/assets/fonts/Jost-400-BookItalic.woff +0 -0
- data/assets/fonts/Jost-400-BookItalic.woff2 +0 -0
- data/assets/fonts/Jost-700-Bold.woff +0 -0
- data/assets/fonts/Jost-700-Bold.woff2 +0 -0
- data/assets/fonts/Jost-700-BoldItalic.woff +0 -0
- data/assets/fonts/Jost-700-BoldItalic.woff2 +0 -0
- metadata +36 -16
- data/_data/languages/en.yml +0 -5
- data/_data/languages/nb.yml +0 -5
- data/_includes/language.liquid +0 -4
- data/assets/fonts/DraftingMono-Bold.otf +0 -0
- data/assets/fonts/DraftingMono-BoldItalic.otf +0 -0
- data/assets/fonts/DraftingMono-Italic.otf +0 -0
- data/assets/fonts/DraftingMono-Regular.otf +0 -0
- data/assets/fonts/Jost-400-Book.otf +0 -0
- data/assets/fonts/Jost-400-BookItalic.otf +0 -0
- data/assets/fonts/Jost-700-Bold.otf +0 -0
- data/assets/fonts/Jost-700-BoldItalic.otf +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad51e254faae83e2cdf0624234c61c84128ffd51cc15f12ab26b6e99dd2650d5
|
4
|
+
data.tar.gz: dc1b9bfdf646ddca495b54c022ba779dbf91bba9ab6239039d889949f9779446
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10db16c81b0d0e055e845cb6354590486edaa22b89c09d2f4b3f7f4b399ae2c6ee61e7f22762891ad42b48ccc687713b8bc21c148803d1761b7f08e469511242
|
7
|
+
data.tar.gz: '094591d497cb98ec577d7ce822c81ccf565c8fe80cb90bef035dbfbe6faefb7bb5037d5abb2545cb6bc48019914e198f0a4b6b8d57884b9723445e841eec8741'
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,39 @@ 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.1]
|
8
|
+
|
9
|
+
### Fixed
|
10
|
+
|
11
|
+
- Improve layout and styling
|
12
|
+
- Update font formats
|
13
|
+
|
14
|
+
## [1.2.0]
|
15
|
+
|
16
|
+
### Added
|
17
|
+
|
18
|
+
- Header to posts
|
19
|
+
|
20
|
+
### Fixed
|
21
|
+
|
22
|
+
- Footer styling
|
23
|
+
|
24
|
+
### Removed
|
25
|
+
|
26
|
+
- Remove language localisation
|
27
|
+
|
28
|
+
## [1.1.0]
|
29
|
+
|
30
|
+
### Fixed
|
31
|
+
|
32
|
+
- Downgrade Jekyll version in .gemspec file
|
33
|
+
|
34
|
+
## [1.0.2]
|
35
|
+
|
36
|
+
### Fixed
|
37
|
+
|
38
|
+
- Project configuration files
|
39
|
+
|
7
40
|
## [1.0.1]
|
8
41
|
|
9
42
|
### Fixed
|
data/README.md
CHANGED
@@ -14,9 +14,11 @@ 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
|
17
|
+
remote_theme: brolun/jekyll-theme-monty
|
18
18
|
plugins:
|
19
19
|
- jekyll-remote-theme
|
20
|
+
- jekyll-feed
|
21
|
+
- jekyll-seo-tag
|
20
22
|
```
|
21
23
|
|
22
24
|
Optionally, if you would like to preview your site locally, add the following to your site's `Gemfile`:
|
@@ -29,39 +31,18 @@ gem "github-pages", group: :jekyll_plugins
|
|
29
31
|
|
30
32
|
### Configuration variables
|
31
33
|
|
32
|
-
Monty requires the following
|
34
|
+
Monty requires the following variable to be set in your site's `_config.yml`:
|
33
35
|
|
34
36
|
```yaml
|
35
37
|
title: [Your site's title]
|
36
|
-
tagline: [A short description of your site]
|
37
|
-
description: [A longer meta description of your site]
|
38
38
|
```
|
39
39
|
|
40
|
-
Additionally, you may choose to set the following optional
|
40
|
+
Additionally, you may choose to set the following optional variable:
|
41
41
|
|
42
42
|
```yaml
|
43
|
-
language: [A language code; 'en'
|
44
|
-
license: [Your license or copyright info; can be left blank]
|
43
|
+
language: [A language code; 'en' is default]
|
45
44
|
```
|
46
45
|
|
47
|
-
### Language configuration
|
48
|
-
|
49
|
-
Monty contains two hardcoded language strings; `en` and `nb`. To add support for another language:
|
50
|
-
|
51
|
-
1. Create a `_data/languages/**.yml` file, replacing `**` with your chosen ISO 639-1 two-letter language code.
|
52
|
-
|
53
|
-
2. Add the following (with your translations) to the file:
|
54
|
-
|
55
|
-
```yaml
|
56
|
-
locale: [Your two-letter language code]
|
57
|
-
string:
|
58
|
-
home: [Your translation of 'Home']
|
59
|
-
about: [Your translation of 'About']
|
60
|
-
posts: [Your translation of 'Posts']
|
61
|
-
```
|
62
|
-
|
63
|
-
3. Set the language code in your `_config.yml` file to activate your language.
|
64
|
-
|
65
46
|
### Front matter variables
|
66
47
|
|
67
48
|
Monty is **not** designed for sorting blog posts according to `categories`, `tags`, or other front matter variables.
|
@@ -72,9 +53,9 @@ If you want your site to display a favicon, simply add a `favicon.ico` image to
|
|
72
53
|
|
73
54
|
### SEO tag and RSS Feed plugins
|
74
55
|
|
75
|
-
Monty
|
56
|
+
Monty uses the Jekyll SEO tag plugin. You can [read about how to further configure the SEO tag plugin here](https://github.com/jekyll/jekyll-seo-tag).
|
76
57
|
|
77
|
-
Monty also
|
58
|
+
Monty also uses the Jekyll Feed plugin. The plugin generates an Atom/RSS feed of your blog posts. You can [read about the Feed plugin here](https://github.com/jekyll/jekyll-feed).
|
78
59
|
|
79
60
|
## Contributing
|
80
61
|
|
data/_config.yml
CHANGED
data/_includes/footer.html
CHANGED
@@ -1,36 +1,28 @@
|
|
1
|
-
<hr />
|
2
1
|
<nav>
|
3
|
-
<ul>
|
4
|
-
<li>
|
5
|
-
<a href="{{ '/index.html' | relative_url }}"
|
6
|
-
>{{ language.string.home }}</a
|
7
|
-
>
|
8
|
-
</li>
|
9
|
-
<li>
|
10
|
-
<a href="{{ '/feed.xml' | relative_url }}">RSS</a>
|
11
|
-
</li>
|
12
|
-
</ul>
|
13
2
|
<ul>
|
14
3
|
{% if page.previous.url %}
|
15
|
-
<li>
|
16
|
-
<a
|
17
|
-
|
4
|
+
<li class="prev">
|
5
|
+
<a href="{{ page.previous.url | relative_url }}"
|
6
|
+
>❮ <span>{{page.previous.title | truncate: 18}}</span>
|
18
7
|
</a>
|
19
8
|
</li>
|
20
9
|
{% endif %} {% if page.next.url %}
|
21
|
-
<li>
|
22
|
-
<a
|
23
|
-
>{{page.next.title}}
|
10
|
+
<li class="next">
|
11
|
+
<a href="{{ page.next.url | relative_url }}"
|
12
|
+
><span>{{page.next.title | truncate: 18}}</span> ❯
|
24
13
|
</a>
|
25
14
|
</li>
|
26
15
|
{% endif %}
|
27
16
|
</ul>
|
28
17
|
</nav>
|
29
|
-
|
30
|
-
<
|
31
|
-
{{ site.
|
32
|
-
<a href="
|
33
|
-
<
|
34
|
-
>
|
35
|
-
|
36
|
-
</
|
18
|
+
<hr />
|
19
|
+
<ul>
|
20
|
+
<li>© {{ 'now' | date: "%Y" }} {{ site.title }}</li>
|
21
|
+
<li>⌘ <a href="{{ '/feed.xml' | relative_url }}">RSS</a></li>
|
22
|
+
<li>
|
23
|
+
🗲 <a href="https://jekyllrb.com/" target="_blank">Jekyll</a> &
|
24
|
+
<a href="https://github.com/brolun/jekyll-theme-monty" target="_blank"
|
25
|
+
>Monty</a
|
26
|
+
>
|
27
|
+
</li>
|
28
|
+
</ul>
|
data/_layouts/default.html
CHANGED
@@ -1,23 +1,25 @@
|
|
1
1
|
---
|
2
2
|
---
|
3
3
|
|
4
|
-
<!-- {% include language.liquid %} -->
|
5
4
|
<!DOCTYPE html>
|
6
|
-
<html lang="{{ language
|
5
|
+
<html lang="{{ site.language | default: 'en' }}">
|
7
6
|
<head>
|
8
7
|
<meta charset="UTF-8" />
|
9
8
|
<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
|
+
/>
|
10
14
|
<link
|
11
15
|
rel="stylesheet"
|
12
16
|
href="{{ '/assets/css/styles.css' | relative_url }}"
|
13
17
|
/>
|
14
|
-
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico
|
18
|
+
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
|
15
19
|
{% feed_meta %} {% seo %}
|
16
20
|
</head>
|
17
21
|
<body>
|
18
|
-
|
19
|
-
{{ content }}
|
20
|
-
</main>
|
22
|
+
{{ content }}
|
21
23
|
<footer>{% include footer.html %}</footer>
|
22
24
|
</body>
|
23
25
|
</html>
|
data/_layouts/home.html
CHANGED
@@ -2,22 +2,19 @@
|
|
2
2
|
layout: default
|
3
3
|
---
|
4
4
|
|
5
|
-
|
6
|
-
<
|
7
|
-
<
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
</ul>
|
22
|
-
</nav>
|
23
|
-
</section>
|
5
|
+
<main>
|
6
|
+
<article>
|
7
|
+
<h1>{{ page.title | default: site.title }}</h1>
|
8
|
+
{{ content }}
|
9
|
+
<nav>
|
10
|
+
<ul class="posts-list">
|
11
|
+
{% for post in site.posts %}
|
12
|
+
<li>
|
13
|
+
<span class="date">{{ post.date | date: "%F" }}</span>:
|
14
|
+
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
15
|
+
</li>
|
16
|
+
{% endfor %}
|
17
|
+
</ul>
|
18
|
+
</nav>
|
19
|
+
</article>
|
20
|
+
</main>
|
data/_layouts/post.html
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
layout: default
|
3
3
|
---
|
4
4
|
|
5
|
-
<
|
6
|
-
<
|
7
|
-
|
5
|
+
<header>{% include header.html %}</header>
|
6
|
+
<main>
|
7
|
+
<article>
|
8
|
+
<h1>{{ page.title }}</h1>
|
9
|
+
<time>{{ page.date | date: "%F" }}</time>
|
10
|
+
{{ content }}
|
11
|
+
</article>
|
12
|
+
</main>
|
data/_sass/fonts.scss
CHANGED
@@ -2,55 +2,71 @@
|
|
2
2
|
font-family: "Jost";
|
3
3
|
font-style: normal;
|
4
4
|
font-weight: normal;
|
5
|
-
|
6
|
-
src: url(../fonts/Jost-400-Book.
|
5
|
+
font-display: block;
|
6
|
+
src: url(../fonts/Jost-400-Book.woff2) format("woff2"),
|
7
|
+
url(../fonts/Jost-400-Book.woff) format("woff"),
|
8
|
+
url(../fonts/Jost-400-Book.ttf) format("truetype");
|
7
9
|
}
|
8
10
|
@font-face {
|
9
11
|
font-family: "Jost";
|
10
12
|
font-style: normal;
|
11
13
|
font-weight: bold;
|
12
|
-
|
13
|
-
src: url(../fonts/Jost-700-Bold.
|
14
|
+
font-display: block;
|
15
|
+
src: url(../fonts/Jost-700-Bold.woff2) format("woff2"),
|
16
|
+
url(../fonts/Jost-700-Bold.woff) format("woff"),
|
17
|
+
url(../fonts/Jost-700-Bold.ttf) format("truetype");
|
14
18
|
}
|
15
19
|
@font-face {
|
16
20
|
font-family: "Jost";
|
17
21
|
font-style: italic;
|
18
22
|
font-weight: normal;
|
19
|
-
|
20
|
-
src: url(../fonts/Jost-400-BookItalic.
|
23
|
+
font-display: block;
|
24
|
+
src: url(../fonts/Jost-400-BookItalic.woff2) format("woff2"),
|
25
|
+
url(../fonts/Jost-400-BookItalic.woff) format("woff"),
|
26
|
+
url(../fonts/Jost-400-BookItalic.ttf) format("truetype");
|
21
27
|
}
|
22
28
|
@font-face {
|
23
29
|
font-family: "Jost";
|
24
30
|
font-style: italic;
|
25
31
|
font-weight: bold;
|
26
|
-
|
27
|
-
src: url(../fonts/Jost-700-BoldItalic.
|
32
|
+
font-display: block;
|
33
|
+
src: url(../fonts/Jost-700-BoldItalic.woff2) format("woff2"),
|
34
|
+
url(../fonts/Jost-700-BoldItalic.woff2) format("woff2"),
|
35
|
+
url(../fonts/Jost-700-BoldItalic.ttf) format("truetype");
|
28
36
|
}
|
29
37
|
@font-face {
|
30
38
|
font-family: "Drafting";
|
31
39
|
font-style: normal;
|
32
40
|
font-weight: normal;
|
33
|
-
|
34
|
-
src: url(../fonts/DraftingMono-Regular.
|
41
|
+
font-display: block;
|
42
|
+
src: url(../fonts/DraftingMono-Regular.woff2) format("woff2"),
|
43
|
+
url(../fonts/DraftingMono-Regular.woff) format("woff"),
|
44
|
+
url(../fonts/DraftingMono-Regular.ttf) format("truetype");
|
35
45
|
}
|
36
46
|
@font-face {
|
37
47
|
font-family: "Drafting";
|
38
48
|
font-style: normal;
|
39
49
|
font-weight: bold;
|
40
|
-
|
41
|
-
src: url(../fonts/DraftingMono-Bold.
|
50
|
+
font-display: block;
|
51
|
+
src: url(../fonts/DraftingMono-Bold.woff2) format("woff2"),
|
52
|
+
url(../fonts/DraftingMono-Bold.woff) format("woff"),
|
53
|
+
url(../fonts/DraftingMono-Bold.ttf) format("truetype");
|
42
54
|
}
|
43
55
|
@font-face {
|
44
56
|
font-family: "Drafting";
|
45
57
|
font-style: italic;
|
46
58
|
font-weight: normal;
|
47
|
-
|
48
|
-
src: url(../fonts/DraftingMono-Italic.
|
59
|
+
font-display: block;
|
60
|
+
src: url(../fonts/DraftingMono-Italic.woff2) format("woff2"),
|
61
|
+
url(../fonts/DraftingMono-Italic.woff) format("woff"),
|
62
|
+
url(../fonts/DraftingMono-Italic.ttf) format("truetype");
|
49
63
|
}
|
50
64
|
@font-face {
|
51
65
|
font-family: "Drafting";
|
52
66
|
font-style: italic;
|
53
67
|
font-weight: bold;
|
54
|
-
|
55
|
-
src: url(../fonts/DraftingMono-BoldItalic.
|
68
|
+
font-display: block;
|
69
|
+
src: url(../fonts/DraftingMono-BoldItalic.woff2) format("woff2"),
|
70
|
+
url(../fonts/DraftingMono-BoldItalic.woff) format("woff"),
|
71
|
+
url(../fonts/DraftingMono-BoldItalic.ttf) format("truetype");
|
56
72
|
}
|
data/_sass/main.scss
CHANGED
@@ -7,25 +7,33 @@ html {
|
|
7
7
|
padding: 16px;
|
8
8
|
}
|
9
9
|
:is(h2, h3, h4, h5, h6) {
|
10
|
-
margin-top:
|
10
|
+
margin-top: 1em;
|
11
11
|
}
|
12
12
|
|
13
13
|
// Footer
|
14
14
|
footer {
|
15
|
-
margin
|
15
|
+
margin: 2em auto;
|
16
16
|
}
|
17
|
-
footer
|
18
|
-
display: inline-flex;
|
19
|
-
flex-wrap: wrap;
|
20
|
-
}
|
21
|
-
footer nav ul {
|
17
|
+
footer ul {
|
22
18
|
align-items: left;
|
23
|
-
display:
|
19
|
+
display: flex;
|
24
20
|
flex-wrap: wrap;
|
25
|
-
gap:
|
21
|
+
gap: 1em;
|
26
22
|
list-style-type: none;
|
27
|
-
margin
|
28
|
-
padding: 0
|
23
|
+
margin: 0;
|
24
|
+
padding: 0;
|
25
|
+
}
|
26
|
+
footer ul li {
|
27
|
+
margin-left: 0;
|
28
|
+
}
|
29
|
+
footer nav ul {
|
30
|
+
justify-content: space-between;
|
31
|
+
}
|
32
|
+
.next {
|
33
|
+
margin-left: auto;
|
34
|
+
}
|
35
|
+
footer hr {
|
36
|
+
margin: 24px 0;
|
29
37
|
}
|
30
38
|
|
31
39
|
// Images
|
@@ -41,10 +49,13 @@ img {
|
|
41
49
|
dt {
|
42
50
|
font-weight: bold;
|
43
51
|
}
|
44
|
-
:is(ul, ol) li
|
52
|
+
:is(ul, ol) li,
|
45
53
|
dd {
|
46
54
|
margin-left: $indentation;
|
47
55
|
}
|
56
|
+
.posts-list {
|
57
|
+
padding-top: 1em;
|
58
|
+
}
|
48
59
|
|
49
60
|
// Blockquotes
|
50
61
|
blockquote {
|
data/_sass/syntax.scss
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
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.
|
4
|
+
version: 1.2.1
|
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-11-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -16,14 +16,28 @@ 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
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
27
41
|
description:
|
28
42
|
email:
|
29
43
|
- luna.brodersen@gmail.com
|
@@ -35,10 +49,8 @@ files:
|
|
35
49
|
- LICENSE
|
36
50
|
- README.md
|
37
51
|
- _config.yml
|
38
|
-
- _data/languages/en.yml
|
39
|
-
- _data/languages/nb.yml
|
40
52
|
- _includes/footer.html
|
41
|
-
- _includes/
|
53
|
+
- _includes/header.html
|
42
54
|
- _layouts/default.html
|
43
55
|
- _layouts/home.html
|
44
56
|
- _layouts/post.html
|
@@ -47,22 +59,30 @@ files:
|
|
47
59
|
- _sass/syntax.scss
|
48
60
|
- _sass/variables.scss
|
49
61
|
- assets/css/styles.scss
|
50
|
-
- assets/fonts/DraftingMono-Bold.otf
|
51
62
|
- assets/fonts/DraftingMono-Bold.ttf
|
52
|
-
- assets/fonts/DraftingMono-
|
63
|
+
- assets/fonts/DraftingMono-Bold.woff
|
64
|
+
- assets/fonts/DraftingMono-Bold.woff2
|
53
65
|
- assets/fonts/DraftingMono-BoldItalic.ttf
|
54
|
-
- assets/fonts/DraftingMono-
|
66
|
+
- assets/fonts/DraftingMono-BoldItalic.woff
|
67
|
+
- assets/fonts/DraftingMono-BoldItalic.woff2
|
55
68
|
- assets/fonts/DraftingMono-Italic.ttf
|
56
|
-
- assets/fonts/DraftingMono-
|
69
|
+
- assets/fonts/DraftingMono-Italic.woff
|
70
|
+
- assets/fonts/DraftingMono-Italic.woff2
|
57
71
|
- assets/fonts/DraftingMono-Regular.ttf
|
58
|
-
- assets/fonts/
|
72
|
+
- assets/fonts/DraftingMono-Regular.woff
|
73
|
+
- assets/fonts/DraftingMono-Regular.woff2
|
59
74
|
- assets/fonts/Jost-400-Book.ttf
|
60
|
-
- assets/fonts/Jost-400-
|
75
|
+
- assets/fonts/Jost-400-Book.woff
|
76
|
+
- assets/fonts/Jost-400-Book.woff2
|
61
77
|
- assets/fonts/Jost-400-BookItalic.ttf
|
62
|
-
- assets/fonts/Jost-
|
78
|
+
- assets/fonts/Jost-400-BookItalic.woff
|
79
|
+
- assets/fonts/Jost-400-BookItalic.woff2
|
63
80
|
- assets/fonts/Jost-700-Bold.ttf
|
64
|
-
- assets/fonts/Jost-700-
|
81
|
+
- assets/fonts/Jost-700-Bold.woff
|
82
|
+
- assets/fonts/Jost-700-Bold.woff2
|
65
83
|
- assets/fonts/Jost-700-BoldItalic.ttf
|
84
|
+
- assets/fonts/Jost-700-BoldItalic.woff
|
85
|
+
- assets/fonts/Jost-700-BoldItalic.woff2
|
66
86
|
- feed.xml
|
67
87
|
homepage: https://github.com/brolun/jekyll-theme-monty
|
68
88
|
licenses:
|
@@ -83,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
103
|
- !ruby/object:Gem::Version
|
84
104
|
version: '0'
|
85
105
|
requirements: []
|
86
|
-
rubygems_version: 3.5.
|
106
|
+
rubygems_version: 3.5.11
|
87
107
|
signing_key:
|
88
108
|
specification_version: 4
|
89
109
|
summary: Monty is a Jekyll theme inspired by CSS Naked Day.
|
data/_data/languages/en.yml
DELETED
data/_data/languages/nb.yml
DELETED
data/_includes/language.liquid
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|