monoholic 1.0.2 โ 1.2.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/README.md +20 -5
- data/_includes/footer.html +3 -2
- data/_includes/head.html +7 -1
- data/_includes/header.html +14 -4
- data/_includes/menu.html +72 -5
- data/_includes/post_list.html +6 -3
- data/_layouts/default.html +9 -5
- data/_layouts/home.html +3 -2
- data/_layouts/post.html +7 -4
- data/_sass/_base.scss +32 -0
- data/_sass/_components.scss +11 -0
- data/_sass/_content.scss +1 -1
- data/_sass/_layout.scss +21 -0
- data/_sass/_variables.scss +1 -1
- data/assets/favicon.svg +1 -58
- data/assets/js/.keep +5 -0
- metadata +3 -4
- data/assets/favicon-16x16.png +0 -0
- data/assets/favicon-32x32.png +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ee37aea1bd4ecf60b33567d582c4363961f49364bd2176f42e8b0de8aaa12ce
|
|
4
|
+
data.tar.gz: a00389e09ed54a0d268694fc002614cd0eca0820555d6f888d4442d22e353a34
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 47a614360018402b6e397fb4e8f6d16cb267919176a479dbb3c6ac58c68d4c605af839e84379fc84eca2ffb36ab77ab77c546521cd5e77cb3366ac1e561fa868
|
|
7
|
+
data.tar.gz: cd0c4518e8d0e39ddfe00c56a8311c63d375c5ee749313e15be1ad4a29316ec36321fd4219b2900b7475b9287a5e57811e8f2c685a4f3d2fbfeec85a8ffde0be
|
data/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://rubygems.org/gems/monoholic)
|
|
7
7
|
[](https://stiermid.github.io/monoholic)
|
|
8
8
|
|
|
9
|
-
A minimal, monochrome dark Jekyll theme
|
|
9
|
+
A minimal, monochrome dark Jekyll theme
|
|
10
10
|
|
|
11
11
|
## Features
|
|
12
12
|
|
|
@@ -38,14 +38,27 @@ theme: monoholic
|
|
|
38
38
|
$ bundle install
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
### Manual Installation
|
|
41
|
+
### Manual Installation (GitHub Pages)
|
|
42
42
|
|
|
43
43
|
If you're running Jekyll without RubyGems or prefer to use GitHub Pages remote themes, update your `_config.yml`:
|
|
44
44
|
|
|
45
45
|
```yaml
|
|
46
46
|
remote_theme: stiermid/monoholic
|
|
47
|
+
plugins:
|
|
48
|
+
- jekyll-remote-theme
|
|
49
|
+
- jekyll-feed
|
|
50
|
+
- jekyll-seo-tag
|
|
47
51
|
```
|
|
48
52
|
|
|
53
|
+
`jekyll-remote-theme` fetches the theme on Pages; `jekyll-feed` and `jekyll-seo-tag` are required by the theme's `head.html` (`{% feed_meta %}`, `{% seo %}`). For project sites, also set `baseurl` (e.g. `/your-repo`) and `url` (e.g. `https://<user>.github.io`). To pin a release: `remote_theme: stiermid/monoholic@v1.2.0`.
|
|
54
|
+
|
|
55
|
+
> **Pages note:** Native GitHub Pages builds run Jekyll 3.9. The `monoholic` RubyGem requires Jekyll 4.4, so on GitHub Pages use `remote_theme` only (not `theme:` + `gem "monoholic"`). SCSS intentionally uses `@import` for 3.9 compatibility.
|
|
56
|
+
|
|
57
|
+
| Install method | Jekyll | How |
|
|
58
|
+
| -------------------------------------------------------- | ------------- | --------------------------- |
|
|
59
|
+
| RubyGems (`theme: monoholic`) | 4.4 | local / CI / non-Pages host |
|
|
60
|
+
| GitHub Pages (`remote_theme: stiermid/monoholic@v1.2.0`) | 3.9 via Pages | Pages only |
|
|
61
|
+
|
|
49
62
|
Or, simply fork this repository, adapt the `_config.yml` according to your needs, and you're good to go!
|
|
50
63
|
|
|
51
64
|
## Usage
|
|
@@ -60,8 +73,8 @@ Override the default settings in your `_config.yml`. Key theme configuration opt
|
|
|
60
73
|
|
|
61
74
|
```yaml
|
|
62
75
|
theme_config:
|
|
63
|
-
back: "
|
|
64
|
-
date_format: "%Y
|
|
76
|
+
back: "Back" # Text for backlink on post pages
|
|
77
|
+
date_format: "%Y-%m-%d" # Date format for post metadata
|
|
65
78
|
monochrome_images: true # Apply grayscale filter to images (default: true)
|
|
66
79
|
footer: true # Show/hide site footer (default: true)
|
|
67
80
|
```
|
|
@@ -77,7 +90,7 @@ fediverse_creator: "@username@social.example.com"
|
|
|
77
90
|
Setting `fediverse_creator` tag appends following tag to the site's header:
|
|
78
91
|
|
|
79
92
|
```html
|
|
80
|
-
<meta name="fediverse:creator" content="@username@social.example.com"
|
|
93
|
+
<meta name="fediverse:creator" content="@username@social.example.com" />
|
|
81
94
|
```
|
|
82
95
|
|
|
83
96
|
[See Also](https://docs.joinmastodon.org/user/profile/#attribution)
|
|
@@ -154,6 +167,8 @@ If you want to override or extend the styles, the recommended approach is to add
|
|
|
154
167
|
@import "your-overrides";
|
|
155
168
|
```
|
|
156
169
|
|
|
170
|
+
Note: the theme uses `@import` (not `@use`) to stay compatible with GitHub Pages' Sass stack.
|
|
171
|
+
|
|
157
172
|
To override CSS custom properties (colors, spacing, fonts) without touching SCSS, redeclare the variables in your own stylesheet โ they are exposed under `:root` in `_sass/_variables.scss`.
|
|
158
173
|
|
|
159
174
|
### Per-Page JavaScript
|
data/_includes/footer.html
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
<footer class="site-footer h-card">
|
|
2
|
-
<data class="u-url" href="{{ "/" | relative_url }}"></data>
|
|
3
2
|
<div class="wrapper">
|
|
4
3
|
<div class="footer-col">
|
|
5
4
|
<p>
|
|
6
5
|
© {{ 'now' | date: '%Y' }}
|
|
7
|
-
{{
|
|
6
|
+
<a class="u-url" href="{{ '/' | relative_url }}">
|
|
7
|
+
{{- site.title | upcase | escape -}}
|
|
8
|
+
</a>
|
|
8
9
|
</p>
|
|
9
10
|
</div>
|
|
10
11
|
</div>
|
data/_includes/head.html
CHANGED
|
@@ -2,9 +2,14 @@
|
|
|
2
2
|
<meta charset="utf-8">
|
|
3
3
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
5
|
+
<meta name="theme-color" content="#030303">
|
|
6
|
+
<meta name="color-scheme" content="dark">
|
|
5
7
|
|
|
6
8
|
{%- if site.fediverse_creator -%}
|
|
7
|
-
<meta
|
|
9
|
+
<meta
|
|
10
|
+
name="fediverse:creator"
|
|
11
|
+
content="{{ site.fediverse_creator | escape }}"
|
|
12
|
+
>
|
|
8
13
|
{%- endif -%}
|
|
9
14
|
|
|
10
15
|
{%- seo -%}
|
|
@@ -36,6 +41,7 @@
|
|
|
36
41
|
>
|
|
37
42
|
<link
|
|
38
43
|
rel="apple-touch-icon"
|
|
44
|
+
sizes="180x180"
|
|
39
45
|
href="{{ "/assets/apple-touch-icon.png" | relative_url }}"
|
|
40
46
|
>
|
|
41
47
|
{%- feed_meta -%}
|
data/_includes/header.html
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
|
-
<header class="site-header"
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
<header class="site-header">
|
|
2
|
+
{%- if page.layout == "home" -%}
|
|
3
|
+
<h1 class="site-title">
|
|
4
|
+
<a rel="author" href="{{ "/" | relative_url }}">
|
|
5
|
+
{{ site.title | escape }}
|
|
6
|
+
</a>
|
|
7
|
+
</h1>
|
|
8
|
+
{%- else -%}
|
|
9
|
+
<p class="site-title">
|
|
10
|
+
<a rel="author" href="{{ "/" | relative_url }}">
|
|
11
|
+
{{ site.title | escape }}
|
|
12
|
+
</a>
|
|
13
|
+
</p>
|
|
14
|
+
{%- endif -%}
|
|
5
15
|
</header>
|
data/_includes/menu.html
CHANGED
|
@@ -1,6 +1,69 @@
|
|
|
1
|
+
{%- assign _level = include.level | default: 2 | plus: 0 -%}
|
|
2
|
+
{%- if _level < 2 -%}
|
|
3
|
+
{%- assign _level = 2 -%}
|
|
4
|
+
{%- elsif _level > 6 -%}
|
|
5
|
+
{%- assign _level = 6 -%}
|
|
6
|
+
{%- endif -%}
|
|
7
|
+
{%- assign _next_level = _level | plus: 1 -%}
|
|
8
|
+
{%- if _next_level > 6 -%}
|
|
9
|
+
{%- assign _next_level = 6 -%}
|
|
10
|
+
{%- endif -%}
|
|
1
11
|
{%- for item in include.collection -%}
|
|
2
|
-
|
|
3
|
-
|
|
12
|
+
{%- assign _title_stripped = item.title | strip -%}
|
|
13
|
+
{%- assign _has_title = true -%}
|
|
14
|
+
{%- if item.title == nil or _title_stripped == empty -%}
|
|
15
|
+
{%- assign _has_title = false -%}
|
|
16
|
+
{%- endif -%}
|
|
17
|
+
{%- assign _title_slug = item.title | slugify -%}
|
|
18
|
+
{%- if _title_slug == empty or _title_slug == nil -%}
|
|
19
|
+
{%- assign _title_slug = 'section' -%}
|
|
20
|
+
{%- endif -%}
|
|
21
|
+
{%- if include.parent_id -%}
|
|
22
|
+
{%- assign _heading_id = include.parent_id
|
|
23
|
+
| append: '-'
|
|
24
|
+
| append: _title_slug
|
|
25
|
+
| append: '-'
|
|
26
|
+
| append: forloop.index
|
|
27
|
+
-%}
|
|
28
|
+
{%- elsif include.id_prefix -%}
|
|
29
|
+
{%- assign _heading_id = include.id_prefix
|
|
30
|
+
| append: '-'
|
|
31
|
+
| append: _title_slug
|
|
32
|
+
| append: '-'
|
|
33
|
+
| append: forloop.index
|
|
34
|
+
-%}
|
|
35
|
+
{%- else -%}
|
|
36
|
+
{%- assign _heading_id = _title_slug
|
|
37
|
+
| append: '-'
|
|
38
|
+
| append: forloop.index
|
|
39
|
+
-%}
|
|
40
|
+
{%- endif -%}
|
|
41
|
+
{%- if _has_title -%}
|
|
42
|
+
<section aria-labelledby="{{ _heading_id }}">
|
|
43
|
+
{%- if _level == 3 -%}
|
|
44
|
+
<h3 class="section-title" id="{{ _heading_id }}">
|
|
45
|
+
{{ item.title | escape }}
|
|
46
|
+
</h3>
|
|
47
|
+
{%- elsif _level == 4 -%}
|
|
48
|
+
<h4 class="section-title" id="{{ _heading_id }}">
|
|
49
|
+
{{ item.title | escape }}
|
|
50
|
+
</h4>
|
|
51
|
+
{%- elsif _level == 5 -%}
|
|
52
|
+
<h5 class="section-title" id="{{ _heading_id }}">
|
|
53
|
+
{{ item.title | escape }}
|
|
54
|
+
</h5>
|
|
55
|
+
{%- elsif _level >= 6 -%}
|
|
56
|
+
<h6 class="section-title" id="{{ _heading_id }}">
|
|
57
|
+
{{ item.title | escape }}
|
|
58
|
+
</h6>
|
|
59
|
+
{%- else -%}
|
|
60
|
+
<h2 class="section-title" id="{{ _heading_id }}">
|
|
61
|
+
{{ item.title | escape }}
|
|
62
|
+
</h2>
|
|
63
|
+
{%- endif -%}
|
|
64
|
+
{%- else -%}
|
|
65
|
+
<section>
|
|
66
|
+
{%- endif -%}
|
|
4
67
|
{%- if item.content_file -%}
|
|
5
68
|
{%- assign _menu_page = site.pages
|
|
6
69
|
| where: 'path', item.content_file
|
|
@@ -13,8 +76,12 @@
|
|
|
13
76
|
{{ item.content }}
|
|
14
77
|
{%- endif -%}
|
|
15
78
|
{%- if item.post_list -%}{%- include post_list.html -%}{%- endif -%}
|
|
79
|
+
{%- if item.entries -%}
|
|
80
|
+
{%- include menu.html
|
|
81
|
+
collection=item.entries
|
|
82
|
+
level=_next_level
|
|
83
|
+
parent_id=_heading_id
|
|
84
|
+
-%}
|
|
85
|
+
{%- endif -%}
|
|
16
86
|
</section>
|
|
17
|
-
{%- if item.entries -%}
|
|
18
|
-
{%- include menu.html collection = item.entries -%}
|
|
19
|
-
{%- endif -%}
|
|
20
87
|
{%- endfor -%}
|
data/_includes/post_list.html
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
<ul class="post-list">
|
|
2
2
|
{%- for post in site.posts -%}
|
|
3
3
|
<li>
|
|
4
|
-
<
|
|
4
|
+
<time
|
|
5
|
+
class="post-meta dt-published"
|
|
6
|
+
datetime="{{ post.date | date_to_xmlschema }}"
|
|
7
|
+
>
|
|
5
8
|
{% assign _date_fmt = site.theme_config.date_format
|
|
6
9
|
| default: '%Y-%m-%d'
|
|
7
10
|
%}
|
|
8
|
-
|
|
9
|
-
</
|
|
11
|
+
{{ post.date | date: _date_fmt }}
|
|
12
|
+
</time>
|
|
10
13
|
<a href="{{ post.url | relative_url }}">
|
|
11
14
|
{{ post.title | escape }}
|
|
12
15
|
</a>
|
data/_layouts/default.html
CHANGED
|
@@ -2,11 +2,15 @@
|
|
|
2
2
|
<html lang="{{ page.lang | default: "en" }}">
|
|
3
3
|
{%- include head.html -%}
|
|
4
4
|
<body class="{% if site.theme_config.monochrome_images != false %}images-monochrome{% endif %}">
|
|
5
|
-
<
|
|
6
|
-
|
|
5
|
+
<a class="skip-link" href="#main">Skip to content</a>
|
|
6
|
+
<div class="wrapper">
|
|
7
|
+
{%- unless page.layout == 'post' -%}
|
|
8
|
+
{%- include header.html -%}
|
|
9
|
+
{%- endunless -%}
|
|
10
|
+
<main id="main" class="page-content">
|
|
7
11
|
{{ content }}
|
|
8
|
-
</
|
|
9
|
-
</
|
|
12
|
+
</main>
|
|
13
|
+
</div>
|
|
10
14
|
|
|
11
15
|
{%- unless site.theme_config.footer == false -%}
|
|
12
16
|
{%- include footer.html -%}
|
|
@@ -15,7 +19,7 @@
|
|
|
15
19
|
{% if page.custom_js %}
|
|
16
20
|
{% for js_file in page.custom_js %}
|
|
17
21
|
<script
|
|
18
|
-
|
|
22
|
+
defer
|
|
19
23
|
src="{{ '/assets/js/' | append: js_file | append: '.js' | relative_url }}"
|
|
20
24
|
></script>
|
|
21
25
|
{% endfor %}
|
data/_layouts/home.html
CHANGED
data/_layouts/post.html
CHANGED
|
@@ -4,16 +4,19 @@ layout: default
|
|
|
4
4
|
<article>
|
|
5
5
|
<div class="post-header">
|
|
6
6
|
<a href="{{ '/' | relative_url }}">
|
|
7
|
-
{{ site.theme_config.back | default: 'Back' }}
|
|
7
|
+
{{ site.theme_config.back | default: 'Back' | escape }}
|
|
8
8
|
</a>
|
|
9
|
-
<
|
|
9
|
+
<time
|
|
10
|
+
class="post-meta dt-published"
|
|
11
|
+
datetime="{{ page.date | date_to_xmlschema }}"
|
|
12
|
+
>
|
|
10
13
|
{% assign _date_fmt = site.theme_config.date_format
|
|
11
14
|
| default: '%Y-%m-%d'
|
|
12
15
|
%}
|
|
13
16
|
{{ page.date | date: _date_fmt }}
|
|
14
|
-
</
|
|
17
|
+
</time>
|
|
15
18
|
</div>
|
|
16
|
-
<h1>{{ page.title }}</h1>
|
|
19
|
+
<h1>{{ page.title | escape }}</h1>
|
|
17
20
|
|
|
18
21
|
{{ content }}
|
|
19
22
|
</article>
|
data/_sass/_base.scss
CHANGED
|
@@ -33,8 +33,30 @@ a {
|
|
|
33
33
|
text-decoration: underline;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
+
:focus-visible {
|
|
37
|
+
outline: 2px solid var(--text-color);
|
|
38
|
+
outline-offset: 2px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.skip-link {
|
|
42
|
+
position: absolute;
|
|
43
|
+
top: -1000px;
|
|
44
|
+
left: var(--space-md);
|
|
45
|
+
z-index: 100;
|
|
46
|
+
background-color: var(--text-color);
|
|
47
|
+
color: var(--bg-color);
|
|
48
|
+
padding: var(--space-sm) var(--space-md);
|
|
49
|
+
text-decoration: none;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.skip-link:focus,
|
|
53
|
+
.skip-link:focus-visible {
|
|
54
|
+
top: var(--space-sm);
|
|
55
|
+
}
|
|
56
|
+
|
|
36
57
|
img {
|
|
37
58
|
max-width: 100%;
|
|
59
|
+
height: auto;
|
|
38
60
|
display: block;
|
|
39
61
|
margin: 0 auto;
|
|
40
62
|
}
|
|
@@ -42,3 +64,13 @@ img {
|
|
|
42
64
|
.images-monochrome img {
|
|
43
65
|
filter: grayscale(1);
|
|
44
66
|
}
|
|
67
|
+
|
|
68
|
+
@media (prefers-reduced-motion: reduce) {
|
|
69
|
+
*,
|
|
70
|
+
*::before,
|
|
71
|
+
*::after {
|
|
72
|
+
animation-duration: 0.01ms !important;
|
|
73
|
+
transition-duration: 0.01ms !important;
|
|
74
|
+
scroll-behavior: auto !important;
|
|
75
|
+
}
|
|
76
|
+
}
|
data/_sass/_components.scss
CHANGED
|
@@ -9,6 +9,13 @@
|
|
|
9
9
|
align-items: baseline;
|
|
10
10
|
gap: var(--space-md);
|
|
11
11
|
flex-wrap: wrap; // Mobile safety
|
|
12
|
+
|
|
13
|
+
&::before {
|
|
14
|
+
content: "*";
|
|
15
|
+
color: var(--meta-color);
|
|
16
|
+
// Keep marker snug to the date (flex `gap` would push it too far).
|
|
17
|
+
margin-right: calc(1ch - var(--space-md));
|
|
18
|
+
}
|
|
12
19
|
}
|
|
13
20
|
|
|
14
21
|
.post-meta {
|
|
@@ -59,6 +66,10 @@
|
|
|
59
66
|
font-size: var(--font-size-sm);
|
|
60
67
|
color: var(--meta-color);
|
|
61
68
|
|
|
69
|
+
a {
|
|
70
|
+
color: inherit;
|
|
71
|
+
}
|
|
72
|
+
|
|
62
73
|
.footer-col {
|
|
63
74
|
display: flex;
|
|
64
75
|
justify-content: space-between;
|
data/_sass/_content.scss
CHANGED
data/_sass/_layout.scss
CHANGED
|
@@ -11,6 +11,18 @@
|
|
|
11
11
|
font-size: var(--font-size-site-title);
|
|
12
12
|
font-weight: 700;
|
|
13
13
|
letter-spacing: 0.5px;
|
|
14
|
+
margin: 0;
|
|
15
|
+
|
|
16
|
+
a {
|
|
17
|
+
color: inherit;
|
|
18
|
+
text-decoration: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
a:hover,
|
|
22
|
+
a:focus-visible {
|
|
23
|
+
text-decoration: underline;
|
|
24
|
+
text-underline-offset: 3px;
|
|
25
|
+
}
|
|
14
26
|
}
|
|
15
27
|
}
|
|
16
28
|
|
|
@@ -18,8 +30,17 @@
|
|
|
18
30
|
font-size: var(--font-size-section);
|
|
19
31
|
font-weight: 700;
|
|
20
32
|
margin-bottom: var(--space-lg);
|
|
33
|
+
|
|
34
|
+
&::before {
|
|
35
|
+
content: "## ";
|
|
36
|
+
color: var(--meta-color);
|
|
37
|
+
}
|
|
21
38
|
}
|
|
22
39
|
|
|
23
40
|
section {
|
|
24
41
|
margin-bottom: var(--space-xl);
|
|
25
42
|
}
|
|
43
|
+
|
|
44
|
+
section section:last-child {
|
|
45
|
+
margin-bottom: 0;
|
|
46
|
+
}
|
data/_sass/_variables.scss
CHANGED
data/assets/favicon.svg
CHANGED
|
@@ -1,58 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
width="32"
|
|
6
|
-
height="32"
|
|
7
|
-
viewBox="0 0 32 32"
|
|
8
|
-
version="1.1"
|
|
9
|
-
id="svg1"
|
|
10
|
-
inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
|
|
11
|
-
sodipodi:docname="icon.svg"
|
|
12
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
-
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
-
<sodipodi:namedview
|
|
17
|
-
id="namedview1"
|
|
18
|
-
pagecolor="#505050"
|
|
19
|
-
bordercolor="#eeeeee"
|
|
20
|
-
borderopacity="1"
|
|
21
|
-
inkscape:showpageshadow="0"
|
|
22
|
-
inkscape:pageopacity="0"
|
|
23
|
-
inkscape:pagecheckerboard="0"
|
|
24
|
-
inkscape:deskcolor="#505050"
|
|
25
|
-
inkscape:document-units="px"
|
|
26
|
-
inkscape:zoom="16"
|
|
27
|
-
inkscape:cx="8.125"
|
|
28
|
-
inkscape:cy="19.59375"
|
|
29
|
-
inkscape:window-width="1918"
|
|
30
|
-
inkscape:window-height="1052"
|
|
31
|
-
inkscape:window-x="0"
|
|
32
|
-
inkscape:window-y="0"
|
|
33
|
-
inkscape:window-maximized="1"
|
|
34
|
-
inkscape:current-layer="layer1" />
|
|
35
|
-
<defs
|
|
36
|
-
id="defs1" />
|
|
37
|
-
<g
|
|
38
|
-
inkscape:label="Layer 1"
|
|
39
|
-
inkscape:groupmode="layer"
|
|
40
|
-
id="layer1">
|
|
41
|
-
<path
|
|
42
|
-
style="font-size:48px;font-family:Monospace;-inkscape-font-specification:Monospace"
|
|
43
|
-
d="M 4.4799998,27.981593 V 4.4984075 h 3.744 c 0,0 0.72,1.36 1.488,0.624 0.8000002,-0.736 1.8080002,-1.104 3.0240002,-1.104 1.152,0 2.128,0.336 2.928,1.008 0.8,0.672 2.496,0.672 3.264,0 0.8,-0.672 1.808,-1.008 3.024,-1.008 1.696,0 3.04,0.64 4.032,1.92 1.024,1.248 1.536,2.88 1.536,4.8960005 V 27.981593 H 23.488 V 10.786408 c 0,-1.0560005 -0.256,-1.8880005 -0.768,-2.4960005 -0.512,-0.64 -1.216,-0.96 -2.112,-0.96 -0.864,0 -1.552,0.304 -2.064,0.912 -0.512,0.608 -0.768,1.44 -0.768,2.4960005 V 27.981593 H 14.224 V 10.786408 c 0,-1.0560005 -0.256,-1.8880005 -0.768,-2.4960005 -0.512,-0.64 -1.2,-0.96 -2.064,-0.96 -0.896,0 -1.6000002,0.304 -2.1120002,0.912 -0.512,0.608 -0.768,1.44 -0.768,2.4960005 v 17.243185 z"
|
|
44
|
-
id="text2"
|
|
45
|
-
aria-label="m"
|
|
46
|
-
sodipodi:nodetypes="ccccsscscsccscsssccscssscc" />
|
|
47
|
-
<text
|
|
48
|
-
xml:space="preserve"
|
|
49
|
-
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:48px;font-family:Monospace;-inkscape-font-specification:Monospace;writing-mode:lr-tb;direction:ltr;fill:#000000"
|
|
50
|
-
x="-171.11984"
|
|
51
|
-
y="24.041632"
|
|
52
|
-
id="text3"><tspan
|
|
53
|
-
sodipodi:role="line"
|
|
54
|
-
id="tspan2"
|
|
55
|
-
x="-171.11984"
|
|
56
|
-
y="24.041632" /></text>
|
|
57
|
-
</g>
|
|
58
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" role="img"><title>m</title><path fill="#fff" d="M 4.4799998,27.981593 V 4.4984075 h 3.744 c 0,0 0.72,1.36 1.488,0.624 0.8000002,-0.736 1.8080002,-1.104 3.0240002,-1.104 1.152,0 2.128,0.336 2.928,1.008 0.8,0.672 2.496,0.672 3.264,0 0.8,-0.672 1.808,-1.008 3.024,-1.008 1.696,0 3.04,0.64 4.032,1.92 1.024,1.248 1.536,2.88 1.536,4.8960005 V 27.981593 H 23.488 V 10.786408 c 0,-1.0560005 -0.256,-1.8880005 -0.768,-2.4960005 -0.512,-0.64 -1.216,-0.96 -2.112,-0.96 -0.864,0 -1.552,0.304 -2.064,0.912 -0.512,0.608 -0.768,1.44 -0.768,2.4960005 V 27.981593 H 14.224 V 10.786408 c 0,-1.0560005 -0.256,-1.8880005 -0.768,-2.4960005 -0.512,-0.64 -1.2,-0.96 -2.064,-0.96 -0.896,0 -1.6000002,0.304 -2.1120002,0.912 -0.512,0.608 -0.768,1.44 -0.768,2.4960005 v 17.243185 z"/></svg>
|
data/assets/js/.keep
ADDED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: monoholic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Agil Mammadov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-09-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -93,10 +93,9 @@ files:
|
|
|
93
93
|
- _sass/monoholic.scss
|
|
94
94
|
- assets/apple-touch-icon.png
|
|
95
95
|
- assets/css/style.scss
|
|
96
|
-
- assets/favicon-16x16.png
|
|
97
|
-
- assets/favicon-32x32.png
|
|
98
96
|
- assets/favicon.ico
|
|
99
97
|
- assets/favicon.svg
|
|
98
|
+
- assets/js/.keep
|
|
100
99
|
homepage: https://github.com/stiermid/monoholic
|
|
101
100
|
licenses:
|
|
102
101
|
- GPL-3.0-only
|
data/assets/favicon-16x16.png
DELETED
|
Binary file
|
data/assets/favicon-32x32.png
DELETED
|
Binary file
|