jekyll-monia 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4195c632cd68050075ea423cc897a318edf287b5ec38a509803c50b15062b6a8
4
+ data.tar.gz: 1ee158a124cf6a2b4f59f2e6e70abd927f34f84edb06fbb4972312e9f537d0b0
5
+ SHA512:
6
+ metadata.gz: 1d5937d1ccbedfe133b6a578b99dc4547b05048ed37dd5c22df0d2df6c3c4ac40c07904bd9768d1da17137d8bb85f2cbdfa3a449c98fa54828fe2d9473d4644a
7
+ data.tar.gz: 75b987e7a457ce20446d67eebe813bca68811715d24e8a9876adca60f6294112cb20042d5f7b889e984b3a5e13c5968d47904e72a33306e4d4fe3321a9dfe793
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Eugene Lysanskiy
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,50 @@
1
+ # jekyll-monia
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
4
+
5
+ To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
+
7
+ TODO: Delete this and the text above, and describe your gem
8
+
9
+ ## Installation
10
+
11
+ Add this line to your Jekyll site's `Gemfile`:
12
+
13
+ ```ruby
14
+ gem "jekyll-monia"
15
+ ```
16
+
17
+ And add this line to your Jekyll site's `_config.yml`:
18
+
19
+ ```yaml
20
+ theme: jekyll-monia
21
+ ```
22
+
23
+ And then execute:
24
+
25
+ $ bundle
26
+
27
+ Or install it yourself as:
28
+
29
+ $ gem install jekyll-monia
30
+
31
+ ## Usage
32
+
33
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
34
+
35
+ ## Contributing
36
+
37
+ Bug reports and pull requests are welcome on GitHub at https://github.com/Keallar/jekyll-monia. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
38
+
39
+ ## Development
40
+
41
+ To set up your environment to develop this theme, run `bundle install`.
42
+
43
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
44
+
45
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
46
+ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-monia.gemspec` accordingly.
47
+
48
+ ## License
49
+
50
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/_config.yml ADDED
@@ -0,0 +1,29 @@
1
+ title: monia
2
+ author: Keallar
3
+ email: zlysanskiy@gmail.com
4
+ tagline: "A jekyll theme that use iA Writer Mono font and shell view"
5
+ description: "This is a preview of Monia"
6
+ github_username: Keallar
7
+
8
+ plugins:
9
+ - jekyll-sitemap
10
+ - jekyll-seo-tag
11
+ - jekyll-feed
12
+ - jekyll-paginate
13
+ - jemoji
14
+
15
+ sass:
16
+ style: compressed
17
+
18
+ theme: jekyll-monia
19
+
20
+ # highlight code
21
+ highlighter: rouge
22
+
23
+ # pagination
24
+ paginate: 1
25
+ paginate_path: "/blog/page:num/"
26
+
27
+ header_pages:
28
+ - read-me.md
29
+ - preview.md
@@ -0,0 +1,5 @@
1
+ <!-- footer -->
2
+
3
+ <footer>
4
+ {% if site.github_username and site.github_username != "" %} :octocat:<a href="https://github.com/{{site.github_username}}">@{{ site.github_username }}</a> {% endif %}
5
+ </footer>
@@ -0,0 +1,25 @@
1
+ <!-- head -->
2
+
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
7
+
8
+ <title>
9
+ {% if page.layout != 'home' %}
10
+ {% if page.title %}
11
+ {{ page.title }}
12
+ {% else %}
13
+ {{ site.title }}
14
+ {% endif %} -
15
+
16
+ {{ site.title }}
17
+ {% else %}
18
+ {{ site.title }}
19
+ {% endif %}
20
+ </title>
21
+ <link href="{{ '/assets/css/main.css' | relative_url }}" rel="stylesheet">
22
+ <script type="text/javascript" src="{{ page.js_file | relative_url }}"></script>
23
+
24
+ {% seo %}
25
+ </head>
@@ -0,0 +1,17 @@
1
+ <!-- header -->
2
+
3
+ {%- assign page_paths = site.header_pages | default: default_paths -%}
4
+
5
+ <header>
6
+ <div class="menu">
7
+ <a href="{{ '/' | relative_url}}"><div class="page_title">{{ site.title }}<b class="blinking_cursor">_</b></div></a>
8
+ <ul>
9
+ {%- for path in page_paths -%}
10
+ {%- assign my_page = site.pages | where: "path", path | first -%}
11
+ {%- if my_page.title and my_page.permalink_name != '/home' -%}
12
+ <li><a href="{{ my_page.url | relative_url }}">/{{ my_page.permalink_name | replace: " ", "-" | replace: "/", "" | my_page.permalink | replace: "/", "" | ERROR }}</a></li>
13
+ {%- endif -%}
14
+ {%- endfor -%}
15
+ </ul>
16
+ </div>
17
+ </header>
@@ -0,0 +1,15 @@
1
+ <!-- pagination -->
2
+
3
+ {% if paginator.total_pages > 1 %}
4
+ <div class="pagination">
5
+ {% for page in (1..paginator.total_pages) %}
6
+ {% if page == paginator.page %}
7
+ <span>{{ page }}</span>
8
+ {% elsif page == 1 %}
9
+ <a href="{{ '/' | relative_url }}">{{ page }}</a>
10
+ {% else %}
11
+ <a href="{{ site.paginate_path | relative_url | replace: ':num', page }}">{{ page }}</a>
12
+ {% endif %}
13
+ {% endfor %}
14
+ </div>
15
+ {% endif %}
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ {% include head.html %}
5
+
6
+ <body>
7
+
8
+ {% include header.html %}
9
+
10
+ {{ content }}
11
+
12
+ {% include footer.html %}
13
+
14
+ </body>
15
+ </html>
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="error_box">
6
+ {{ content }}
7
+ </div>
@@ -0,0 +1,20 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <h2>Articles</h2>
6
+ <div>
7
+ <ul>
8
+ {% for post in paginator.posts %}
9
+ <li>
10
+ <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
11
+ {{ post.date | date: "%b %-d, %Y" }}
12
+ {{ post.excerpt }}
13
+ </li>
14
+ {% endfor %}
15
+ </ul>
16
+
17
+ {% if site.paginate %}
18
+ {% include pagination.html %}
19
+ {%- endif -%}
20
+ </div>
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,20 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="post">
6
+ <h1 class="post-title">{{ page.title }}</h1>
7
+
8
+ <div class="post-date">
9
+ Published on {{ page.date | date_to_string }}
10
+ {% if page.author != null %}
11
+ by {{ page.author }}
12
+ {% endif %}
13
+ </div>
14
+
15
+ <div class="post-description">
16
+ {{ page.description }}
17
+ </div>
18
+
19
+ {{ content }}
20
+ </div>
@@ -0,0 +1,52 @@
1
+ body {
2
+ background-color: var(--bg-color);
3
+ color: var(--main-color);
4
+ font-family: 'iA Writer Mono S';
5
+ margin: 0 auto;
6
+ width: 90%;
7
+ max-width: 700px;
8
+ line-height: 2em;
9
+ font-size: 0.9em;
10
+ }
11
+
12
+ h1, h2, h3, h4, h5, h6 {
13
+ margin: 22px 0 0;
14
+ font-weight: bold;
15
+ color: var(--pop-color);
16
+ font-size: $base-font-size;
17
+ }
18
+
19
+ p, ul, ol {
20
+ font-size: $base-font-size;
21
+ color: var(--text-color);
22
+ }
23
+
24
+ a {
25
+ text-decoration: underline;
26
+ color: var(--alt-color);
27
+ }
28
+
29
+ a:hover {
30
+ color: var(--bg-color);
31
+ background-color: var(--alt-color);
32
+ }
33
+
34
+ .primary-text {
35
+ color: var(--main-color);
36
+ }
37
+
38
+ @media only screen and (max-device-width: 500px) {
39
+ * {
40
+ font-size: 12px !important;
41
+ }
42
+ }
43
+
44
+ b, strong {
45
+ color: var(--main-color);
46
+ }
47
+
48
+ .invert {
49
+ color: var(--bg-color);
50
+ background-color: var(--main-color);
51
+ padding: 1px 3px;
52
+ }
@@ -0,0 +1,8 @@
1
+ div.error_box {
2
+ margin: 100px;
3
+ text-align: center;
4
+ }
5
+
6
+ div.error_box h1 {
7
+ font-size: 2em;
8
+ }
@@ -0,0 +1,52 @@
1
+ .container {
2
+ margin-right: auto;
3
+ margin-left: auto;
4
+ }
5
+
6
+ p {
7
+ word-wrap: break-word;
8
+ word-break: break-word;
9
+ white-space: pre-wrap;
10
+ }
11
+
12
+ footer {
13
+ color: var(--text-color);
14
+ margin: 20px auto 15px;
15
+ text-align: right;
16
+ }
17
+
18
+ header {
19
+ margin-top: 25px;
20
+ margin-bottom: 10px;
21
+ }
22
+
23
+ header p {
24
+ text-align: left;
25
+ margin: 0;
26
+ }
27
+
28
+ footer {
29
+ margin-bottom: 20px;
30
+ }
31
+
32
+ img.home_header {
33
+ width: 100%;
34
+ margin-top: 5%;
35
+ margin-bottom: 5%;
36
+ }
37
+
38
+ img.detail_header {
39
+ width: 100%;
40
+ }
41
+
42
+ .post {
43
+ border-bottom: dashed 1px rgba(37, 37, 37, 0.9);
44
+
45
+ &-title {
46
+ font-size: $base-font-size * 1.3;
47
+ }
48
+
49
+ &-date {
50
+ color: lighten(black, 35%);
51
+ }
52
+ }
@@ -0,0 +1,32 @@
1
+ :not(.menu) > ul {
2
+ list-style: none;
3
+ padding-left: 0;
4
+ }
5
+
6
+ ul :not(.menu) > ul {
7
+ list-style: none;
8
+ padding-left: 3em;
9
+ margin-top: 0.5em;
10
+ margin-bottom: 0.7em;
11
+ }
12
+
13
+ :not(.menu) > ul {
14
+ list-style-type: none;
15
+ }
16
+
17
+ :not(.menu) > ul > li:before {
18
+ content: "-";
19
+ }
20
+
21
+ :not(.menu) > ul > li {
22
+ margin-bottom: 25px;
23
+ border-bottom: dashed 1px rgba(37, 37, 37, 0.9);
24
+ }
25
+
26
+ :not(.menu) > ul > li > p {
27
+ margin-left: 17px;
28
+ }
29
+
30
+ ul :not(.menu) > ul > li:before {
31
+ content: "*";
32
+ }
@@ -0,0 +1,62 @@
1
+ .menu {
2
+ border-top: dashed 1px rgba(37, 37, 37, 0.9);
3
+ border-bottom: dashed 1px rgba(37, 37, 37, 0.9);
4
+ margin-bottom: 25px;
5
+ display: flex;
6
+ flex-flow: row nowrap;
7
+ justify-content: space-between;
8
+ align-items: center;
9
+ }
10
+
11
+ .menu .blinking_cursor {
12
+ animation: blinker 1s none infinite;
13
+ font-size: $base-font-size;
14
+ }
15
+
16
+ @keyframes blinker {
17
+ 50% {
18
+ opacity: 0;
19
+ }
20
+ }
21
+
22
+ .menu a {
23
+ background-color: transparent;
24
+ }
25
+
26
+ .menu ul {
27
+ margin-top: 12px;
28
+ margin-bottom: 12px;
29
+ padding-left: 0;
30
+ list-style-type: none;
31
+ text-align: right;
32
+ }
33
+
34
+ .menu ul li {
35
+ display: inline;
36
+ margin-left: 10px;
37
+ }
38
+
39
+ .menu ul li a {
40
+ text-decoration: none;
41
+ color: var(--text-color);
42
+ }
43
+
44
+ .menu ul li a:hover {
45
+ text-decoration: none;
46
+ color: var(--bg-color);
47
+ background-color: var(--main-color);
48
+ }
49
+
50
+ .menu .page_title {
51
+ text-align: left;
52
+ margin-left: 10px;
53
+ float: left;
54
+ font-weight: bold;
55
+ color: var(--main-color);
56
+ font-size: $base-font-size;
57
+ }
58
+
59
+ .menu .page_title:hover {
60
+ text-decoration: underline;
61
+ }
62
+
@@ -0,0 +1,170 @@
1
+ .highlight pre, pre {
2
+ background-color: #f8f8f8;
3
+ border: 1px solid #ccc;
4
+ padding: 6px 10px;
5
+ border-radius: 3px;
6
+ }
7
+
8
+ :not(pre) > code {
9
+ background-color: #f8f8f8;
10
+ border: 1px solid #ccc;
11
+ padding: 3px 2px;
12
+ border-radius: 3px;
13
+ }
14
+
15
+ .highlight {
16
+ .hll {
17
+ background-color: #f8f8f8;
18
+ border: 1px solid #ccc;
19
+ padding: 6px 10px;
20
+ border-radius: 3px;
21
+ }
22
+ .c {
23
+ color: #999988;
24
+ font-style: italic;
25
+ }
26
+ .err {
27
+ color: #a61717;
28
+ background-color: #e3d2d2;
29
+ }
30
+ .k, .o {
31
+ font-weight: bold;
32
+ }
33
+ .cm {
34
+ color: #999988;
35
+ font-style: italic;
36
+ }
37
+ .cp {
38
+ color: #999999;
39
+ font-weight: bold;
40
+ }
41
+ .c1 {
42
+ color: #999988;
43
+ font-style: italic;
44
+ }
45
+ .cs {
46
+ color: #999999;
47
+ font-weight: bold;
48
+ font-style: italic;
49
+ }
50
+ .gd {
51
+ color: #000000;
52
+ background-color: #ffdddd;
53
+ .x {
54
+ color: #000000;
55
+ background-color: #ffaaaa;
56
+ }
57
+ }
58
+ .ge {
59
+ font-style: italic;
60
+ }
61
+ .gr {
62
+ color: #aa0000;
63
+ }
64
+ .gh {
65
+ color: #999999;
66
+ }
67
+ .gi {
68
+ color: #000000;
69
+ background-color: #ddffdd;
70
+ .x {
71
+ color: #000000;
72
+ background-color: #aaffaa;
73
+ }
74
+ }
75
+ .go {
76
+ color: #888888;
77
+ }
78
+ .gp {
79
+ color: #555555;
80
+ }
81
+ .gs {
82
+ font-weight: bold;
83
+ }
84
+ .gu {
85
+ color: #800080;
86
+ font-weight: bold;
87
+ }
88
+ .gt {
89
+ color: #aa0000;
90
+ }
91
+ .kc, .kd, .kn, .kp, .kr {
92
+ font-weight: bold;
93
+ }
94
+ .kt {
95
+ color: #445588;
96
+ font-weight: bold;
97
+ }
98
+ .m {
99
+ color: #009999;
100
+ }
101
+ .s {
102
+ color: #dd1144;
103
+ }
104
+ .n {
105
+ color: #333333;
106
+ }
107
+ .na {
108
+ color: teal;
109
+ }
110
+ .nb {
111
+ color: #0086b3;
112
+ }
113
+ .nc {
114
+ color: #445588;
115
+ font-weight: bold;
116
+ }
117
+ .no {
118
+ color: teal;
119
+ }
120
+ .ni {
121
+ color: purple;
122
+ }
123
+ .ne, .nf {
124
+ color: #990000;
125
+ font-weight: bold;
126
+ }
127
+ .nn {
128
+ color: #555555;
129
+ }
130
+ .nt {
131
+ color: navy;
132
+ }
133
+ .nv {
134
+ color: teal;
135
+ }
136
+ .ow {
137
+ font-weight: bold;
138
+ }
139
+ .w {
140
+ color: #bbbbbb;
141
+ }
142
+ .mf, .mh, .mi, .mo {
143
+ color: #009999;
144
+ }
145
+ .sb, .sc, .sd, .s2, .se, .sh, .si, .sx {
146
+ color: #dd1144;
147
+ }
148
+ .sr {
149
+ color: #009926;
150
+ }
151
+ .s1 {
152
+ color: #dd1144;
153
+ }
154
+ .ss {
155
+ color: #990073;
156
+ }
157
+ .bp {
158
+ color: #999999;
159
+ }
160
+ .vc, .vg, .vi {
161
+ color: teal;
162
+ }
163
+ .il {
164
+ color: #009999;
165
+ }
166
+ .gc {
167
+ color: #999;
168
+ background-color: #EAF2F5;
169
+ }
170
+ }
data/_sass/monia.scss ADDED
@@ -0,0 +1,31 @@
1
+ /* FONTS */
2
+ @font-face {
3
+ font-family: 'iA Writer Mono S';
4
+ src: url("../fonts/iAWriterMonoS-Regular.ttf");
5
+ font-weight: normal;
6
+ }
7
+
8
+ @font-face {
9
+ font-family: 'iA Writer Mono S';
10
+ src: url("../fonts/iAWriterMonoS-Bold.ttf");
11
+ font-weight: bold;
12
+ }
13
+
14
+ $base-font-size: 1.03em;
15
+
16
+ :root {
17
+ --main-color: black;
18
+ --bg-color: white;
19
+
20
+ --text-color: black;
21
+ --pop-color: black;
22
+ --alt-color: #cb2020;
23
+ --light-alt-color: rgb(213, 46, 46);
24
+ }
25
+
26
+ @import 'monia/syntax-highlighting.scss',
27
+ 'monia/base',
28
+ 'monia/layout',
29
+ 'monia/lists',
30
+ 'monia/navigation',
31
+ 'monia/error';
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "monia";
Binary file
metadata ADDED
@@ -0,0 +1,149 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-monia
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Keallar
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-06-15 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: '4.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-sitemap
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.4'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.4'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-seo-tag
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.1'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.1'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-feed
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.16'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.16'
69
+ - !ruby/object:Gem::Dependency
70
+ name: jemoji
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.11'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.11'
83
+ - !ruby/object:Gem::Dependency
84
+ name: jekyll-paginate
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description:
98
+ email:
99
+ - zlysanskiy@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - LICENSE
105
+ - README.md
106
+ - _config.yml
107
+ - _includes/footer.html
108
+ - _includes/head.html
109
+ - _includes/header.html
110
+ - _includes/pagination.html
111
+ - _layouts/default.html
112
+ - _layouts/error.html
113
+ - _layouts/home.html
114
+ - _layouts/page.html
115
+ - _layouts/post.html
116
+ - _sass/monia.scss
117
+ - _sass/monia/base.scss
118
+ - _sass/monia/error.scss
119
+ - _sass/monia/layout.scss
120
+ - _sass/monia/lists.scss
121
+ - _sass/monia/navigation.scss
122
+ - _sass/monia/syntax-highlighting.scss
123
+ - assets/css/main.scss
124
+ - assets/fonts/iAWriterMonoS-Bold.ttf
125
+ - assets/fonts/iAWriterMonoS-Regular.ttf
126
+ homepage: https://github.com/Keallar/jekyll-monia
127
+ licenses:
128
+ - MIT
129
+ metadata: {}
130
+ post_install_message:
131
+ rdoc_options: []
132
+ require_paths:
133
+ - lib
134
+ required_ruby_version: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ required_rubygems_version: !ruby/object:Gem::Requirement
140
+ requirements:
141
+ - - ">="
142
+ - !ruby/object:Gem::Version
143
+ version: '0'
144
+ requirements: []
145
+ rubygems_version: 3.5.6
146
+ signing_key:
147
+ specification_version: 4
148
+ summary: A jekyll theme that use iA Writer Mono font and shell view
149
+ test_files: []