nimmoi 0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 3a79d0822d97c08ba93ccb1b92d9a5ebb16249d1b75d921feebd97faee0d77ec
4
+ data.tar.gz: 92a8d38fee983e69b574017c15c08fe7b65ff986df7e34567e3dba2b1fe15062
5
+ SHA512:
6
+ metadata.gz: 3ff313e861cb34681b298906da0a5dade62d0dc9e34d74c4b56d524e7e33723de39683f4fe0a3b64b514a4af32c137c822393d08eccf900efb667ce2dacb2751
7
+ data.tar.gz: 234c824c46c628015509bb3e28231eb0ac80252b5092a6f631bec5d9a9d6204a7e361540c81d603ea3edad0a3491c6f43502dbc841373723e1c3dd1c5cb10abc
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 sporeball
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # nimmoi
2
+
3
+ <a href="https://rubygems.org/gems/nimmoi"><img src="https://img.shields.io/gem/v/nimmoi" /></a>
4
+
5
+ nimmoi is a soft Jekyll theme for simple sites.\
6
+ it's used in the redesigned version of [sporeball.dev](https://sporeball.dev), and takes inspiration from sites like [wiki.xxiivv.com](https://wiki.xxiivv.com) and [compudanzas.net](https://compudanzas.net).
7
+
8
+ ![image](https://user-images.githubusercontent.com/12767408/177632892-2e18bd0c-7077-4f3e-8ff4-a1eb18b9d3c3.png)
9
+
10
+ ## installation
11
+ install nimmoi as a gem-based theme by *(1)* adding this line to your `Gemfile`:
12
+
13
+ ```ruby
14
+ gem "nimmoi"
15
+ ```
16
+
17
+ *(2)* adding this line to your `_config.yml` file:
18
+
19
+ ```yml
20
+ theme: nimmoi
21
+ ```
22
+
23
+ and *(3)* running `bundle`.
24
+
25
+ or use it as a remote GitHub Pages theme by *(1)* adding this line to your `_config.yml` file:
26
+
27
+ ```yml
28
+ remote_theme: sporeball/nimmoi
29
+ ```
30
+
31
+ ## documentation
32
+ to see nimmoi in action, and to get more information, you can [view its page](https://sporeball.dev/nimmoi).
33
+
34
+ ---
35
+
36
+ ### donate
37
+ you can support the development of this project and others via Patreon:
38
+
39
+ [![Support me on Patreon](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Fshieldsio-patreon.vercel.app%2Fapi%3Fusername%3Dsporeball%26type%3Dpledges%26suffix%3D%252Fmonth&style=for-the-badge)](https://patreon.com/sporeball)
data/_config.yml ADDED
@@ -0,0 +1,8 @@
1
+ title: nimmoi
2
+ description: a soft Jekyll theme for simple sites
3
+ encoding: utf-8
4
+
5
+ sass:
6
+ style: compressed
7
+
8
+ footer: "(c) 2022 <a href='https://sporeball.dev'>sporeball</a> &mdash; MIT license"
@@ -0,0 +1,5 @@
1
+ <footer>
2
+ {%- if site.footer -%}
3
+ <p><small>{{ site.footer }}</small></p>
4
+ {%- endif -%}
5
+ </footer>
@@ -0,0 +1,13 @@
1
+ <head>
2
+ {%- if page.title == site.title -%}
3
+ {%- capture title -%}{{ site.title }} &mdash; home{%- endcapture -%}
4
+ {%- else -%}
5
+ {%- capture title -%}{{ site.title }} &mdash; {{ page.title }}{%- endcapture -%}
6
+ {%- endif -%}
7
+ <title>{{ title }}</title>
8
+
9
+ <meta charset="utf-8">
10
+ <meta name="viewport" content="width=device-width">
11
+
12
+ <link rel="stylesheet" href="{{ '/assets/nimmoi.css' | relative_url }}">
13
+ </head>
@@ -0,0 +1,11 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ {% include head.html %}
4
+ <body>
5
+ <main>
6
+ <h1>{{ page.title }}</h1>
7
+ {{ content }}
8
+ </main>
9
+ {% include footer.html %}
10
+ </body>
11
+ </html>
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
data/_sass/base.scss ADDED
@@ -0,0 +1,61 @@
1
+ * {
2
+ color:#2d1d73
3
+ }
4
+
5
+ body {
6
+ background-color:#dad3f4;
7
+ font-size:15px;
8
+ font-family:sans-serif;
9
+ line-height:1.4
10
+ }
11
+
12
+ main, footer {
13
+ margin:auto;
14
+ max-width:70ch;
15
+ padding:2ch
16
+ }
17
+
18
+ main * {
19
+ margin-bottom:20px
20
+ }
21
+
22
+ h4 {
23
+ margin-bottom:2px
24
+ }
25
+
26
+ h4 + p {
27
+ margin-top:0
28
+ }
29
+
30
+ a {
31
+ font-weight:bold;
32
+ color:#4561c9
33
+ }
34
+
35
+ a:hover {
36
+ color:#324dae
37
+ }
38
+
39
+ a[target="_blank"]:after {
40
+ content:"\00a0*";
41
+ display:inline-block;
42
+ text-decoration:none
43
+ }
44
+
45
+ em, small {
46
+ color:#5438ce
47
+ }
48
+
49
+ code {
50
+ font-size:14px
51
+ }
52
+
53
+ pre {
54
+ padding:5px 10px;
55
+ background:#d0c5f4
56
+ }
57
+
58
+ img {
59
+ margin:0;
60
+ max-width:100%
61
+ }
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "base"
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nimmoi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - sporeball
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-07-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 3.9.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 3.9.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
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'
41
+ description:
42
+ email:
43
+ - sporeballdev@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - LICENSE
49
+ - README.md
50
+ - _config.yml
51
+ - _includes/footer.html
52
+ - _includes/head.html
53
+ - _layouts/default.html
54
+ - _layouts/page.html
55
+ - _layouts/post.html
56
+ - _sass/base.scss
57
+ - assets/nimmoi.scss
58
+ homepage: https://github.com/sporeball/nimmoi
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubygems_version: 3.1.6
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: a soft Jekyll theme for simple sites
81
+ test_files: []