monoholic 0.4.2 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4708ae3d34073debc48897fc80ca19144e0b7879983151c3fc3383a2539fc075
4
- data.tar.gz: '09984d12d0243ad15fee3045be5fcc17c57968626e614ec641eb793ba20612e1'
3
+ metadata.gz: e4720d0755916b98b12992d8bbfff45c31376072905f26312ca18451d40ce27c
4
+ data.tar.gz: 6d35cc0fb66798b36e89dd2e0f36049415573794e8089a34bdf0095f0c7915dd
5
5
  SHA512:
6
- metadata.gz: 98c441ed4b16e5af52691090d50b7c548a8e3de79541e8c48630da53b80007d2b1f24c83075765917c1071855dcabde2f4d3cccc6c8420080bca0736cb9323c8
7
- data.tar.gz: 0c4f995846f78f27515e00b560b41de1d103780c689f479bc6d9c6b593fce4f26f009e88b60b7243fc1de2233f2976cd2d015e47d5f6515796ab347d10336451
6
+ metadata.gz: dd3741371d8073468d0e66137734f41b47e544fdc30a64bf7d0f24083c0b257e60758395cd72ce54700d825d26b9a72175a26c172dac98bb2522e8a8b8b6ee2e
7
+ data.tar.gz: e164f6005f5495e49a4ce1a56e0f581d24741f6f22133052bf59a733388219fb7f2505ac2f63708a65d75638f85791fd706459c0d1333f12023d7c8c2ea5e2d6
data/README.md CHANGED
@@ -8,10 +8,6 @@
8
8
 
9
9
  A minimal, monochrome dark Jekyll theme🧪
10
10
 
11
- <h3 align="center"><a href="https://stiermid.github.io/monoholic">Try the demo out!</a></h3>
12
-
13
- ![Screenshot of homepage](./_screenshots/home.png)
14
-
15
11
  ## Features
16
12
 
17
13
  - Minimalist dark monochrome design
@@ -74,7 +70,7 @@ theme_config:
74
70
  Monoholic supports `fediverse:creator` meta tag:
75
71
 
76
72
  ```yaml
77
- fediverse_creator: @username@social.example.com
73
+ fediverse_creator: "@username@social.example.com"
78
74
  ```
79
75
 
80
76
  Setting `fediverse_creator` tag appends following tag to the site's header:
@@ -85,16 +81,6 @@ Setting `fediverse_creator` tag appends following tag to the site's header:
85
81
 
86
82
  [See Also](https://docs.joinmastodon.org/user/profile/#attribution)
87
83
 
88
- ### Analytics
89
-
90
- Monoholic has built-in support for [GoatCounter](https://www.goatcounter.com/), a privacy-friendly analytics platform. Add your GoatCounter subdomain to `_config.yml`:
91
-
92
- ```yaml
93
- goatcounter: your-subdomain
94
- ```
95
-
96
- This injects the GoatCounter tracking script on every page. Remove the key entirely to disable analytics.
97
-
98
84
  ### Menu Configuration
99
85
 
100
86
  Monoholic uses a data-driven approach to its menu. Create or edit `_data/menu.yml` to define your site's navigation structure.
data/_includes/head.html CHANGED
@@ -13,7 +13,16 @@
13
13
  <link
14
14
  href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap"
15
15
  rel="stylesheet"
16
+ media="print"
17
+ onload="this.media='all'"
16
18
  >
19
+ <noscript>
20
+ <link
21
+ rel="stylesheet"
22
+ href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap"
23
+ >
24
+ </noscript>
25
+
17
26
  <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
18
27
  <link
19
28
  rel="icon"
data/_includes/menu.html CHANGED
@@ -12,7 +12,7 @@
12
12
  {%- elsif item.content -%}
13
13
  {{ item.content }}
14
14
  {%- endif -%}
15
- {%- if item.post_list -%}{%- include post_list.html -%}{%- endif -%}
15
+ {%- if item.post_list -%}{%- include post_list.html -%}{%- endif -%}
16
16
  </section>
17
17
  {%- if item.entries -%}
18
18
  {%- include menu.html collection = item.entries -%}
@@ -20,13 +20,5 @@
20
20
  ></script>
21
21
  {% endfor %}
22
22
  {% endif %}
23
-
24
- {%- if site.goatcounter -%}
25
- <script
26
- data-goatcounter="https://{{ site.goatcounter }}.goatcounter.com/count"
27
- async
28
- src="//gc.zgo.at/count.js"
29
- ></script>
30
- {%- endif -%}
31
23
  </body>
32
24
  </html>
data/_sass/_base.scss CHANGED
@@ -7,7 +7,8 @@ body {
7
7
  color: var(--text-color);
8
8
  font-family: var(--font-family);
9
9
  font-size: var(--font-size-base);
10
- line-height: 1.4;
10
+ line-height: 1.5;
11
+ min-height: 100vh;
11
12
  margin: 0;
12
13
  padding: 0;
13
14
  -webkit-font-smoothing: antialiased;
@@ -22,5 +22,5 @@
22
22
  --space-3xl: 4rem;
23
23
 
24
24
  // Layout
25
- --content-width: 680px;
25
+ --content-width: 800px;
26
26
  }
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: 0.4.2
4
+ version: 1.0.1
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-06-14 00:00:00.000000000 Z
11
+ date: 2026-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll