jekyll-theme-mutter 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: 032df10c2c488a71ba21d6308bf75a472e13d5196b9c0b04197abf6f837083e2
4
+ data.tar.gz: 3f2323d27ee93c34bdb75d17f31f25c6950035cec8ca93f403374e1016c321f0
5
+ SHA512:
6
+ metadata.gz: 2af97220e9e5bc37913ff24ff3d165c7460b37a3dac8cf27a375c9ce70e6a2e7200ee8275f602fe73dad5031f501a4b5cd993d3547c13fea73e09a5be54c18fb
7
+ data.tar.gz: a823d82dd645102dc77bcb6b7a3a4ec677067dad52006a719162b6e64d294673cd1826b07e1a68ba7d586232ae151791c0e9ddc33e9b5c5c7e6d20a8ebd022b4
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Gary
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
13
+ all 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
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # jekyll-theme-mutter
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
+
10
+ ## Installation
11
+
12
+ Add this line to your Jekyll site's `Gemfile`:
13
+
14
+ ```ruby
15
+ gem "jekyll-theme-mutter"
16
+ ```
17
+
18
+ And add this line to your Jekyll site's `_config.yml`:
19
+
20
+ ```yaml
21
+ theme: jekyll-theme-mutter
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ Or install it yourself as:
29
+
30
+ $ gem install jekyll-theme-mutter
31
+
32
+ ## Usage
33
+
34
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
35
+
36
+ ## Contributing
37
+
38
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
39
+
40
+ ## Development
41
+
42
+ To set up your environment to develop this theme, run `bundle install`.
43
+
44
+ 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.
45
+
46
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
47
+ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-theme-mutter.gemspec` accordingly.
48
+
49
+ ## License
50
+
51
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
52
+
@@ -0,0 +1,20 @@
1
+ {%- if page.comments != false and jekyll.environment == "production" -%}
2
+
3
+ <div id="disqus_thread"></div>
4
+ <script>
5
+ var disqus_config = function () {
6
+ this.page.url = '{{ page.url | absolute_url }}';
7
+ this.page.identifier = '{{ page.url | absolute_url }}';
8
+ };
9
+
10
+ (function() {
11
+ var d = document, s = d.createElement('script');
12
+
13
+ s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
14
+
15
+ s.setAttribute('data-timestamp', +new Date());
16
+ (d.head || d.body).appendChild(s);
17
+ })();
18
+ </script>
19
+ <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
20
+ {%- endif -%}
@@ -0,0 +1,5 @@
1
+ <hr/>
2
+ <footer>
3
+ <div><a href="https://github.com/BLumia/Mutter">Mutter</a> build with <i class="i i-heart"></i> on <i class="i i-octodex"></i> </div>
4
+ <div>{{ site.footer-copyright }}</div>
5
+ </footer>
@@ -0,0 +1,12 @@
1
+ <script>
2
+ if(!(window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1")) {
3
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
4
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
5
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
6
+ })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
7
+
8
+ ga('create', '{{ site.google_analytics }}', 'auto');
9
+ ga('send', 'pageview');
10
+ }
11
+ </script>
12
+
@@ -0,0 +1,12 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+ {%- seo -%}
6
+ <link rel="stylesheet" href="{{ "/assets/style.css" | relative_url }}">
7
+ <link rel="stylesheet" href="{{ "/assets/iconfont.css" | relative_url }}">
8
+ {%- feed_meta -%}
9
+ {%- if jekyll.environment == 'production' and site.google_analytics -%}
10
+ {%- include google-analytics.html -%}
11
+ {%- endif -%}
12
+ </head>
@@ -0,0 +1,19 @@
1
+ <header>
2
+ <nav>
3
+ <ul>
4
+ {%- assign page_paths = site.header_pages | default: default_paths -%}
5
+ {%- if page_paths -%}
6
+ {%- for path in page_paths -%}
7
+ {%- assign my_page = site.pages | where: "path", path | first -%}
8
+ {%- if my_page.title or my_page.nav-title -%}
9
+ <li><a class="nobb" href="{{ my_page.url | relative_url }}">{{ my_page.nav-title | default: my_page.title | escape }}</a></li>
10
+ {%- endif -%}
11
+ {%- endfor -%}
12
+ {%- endif -%}
13
+ <!--li><a class="nobb" href="#">Fsck</a></li-->
14
+ </ul>
15
+ </nav>
16
+ <h1 class="head-title"><a href="./" class="nobb">{{ page.title | default: site.title | escape }}</a></h1>
17
+ <h2 class="sub-title">{{ page.subtitle | default: site.subtitle | escape }}</h2>
18
+ <hr/>
19
+ </header>
@@ -0,0 +1,18 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {%- include head.html -%}
5
+
6
+ <body>
7
+ <div class="flex-container">
8
+ {%- include header.html -%}
9
+
10
+ <main class="page-content" aria-label="Content">
11
+ {{ content }}
12
+ </main>
13
+
14
+ {%- include footer.html -%}
15
+ </div>
16
+ </body>
17
+
18
+ </html>
@@ -0,0 +1,12 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="home">
6
+ {%- if page.title -%}
7
+ <h1 class="page-heading">{{ page.title }}</h1>
8
+ {%- endif -%}
9
+
10
+ {{ content }}
11
+
12
+ </div>
@@ -0,0 +1,10 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article class="post">
5
+
6
+ <div class="post-content">
7
+ {{ content }}
8
+ </div>
9
+
10
+ </article>
@@ -0,0 +1,26 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
5
+
6
+ <header class="post-header">
7
+ <p class="post-meta">
8
+ <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
9
+ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
10
+ {{ page.date | date: date_format }}
11
+ </time>
12
+ {%- if page.author -%}
13
+ • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span class="p-author h-card" itemprop="name">{{ page.author }}</span></span>
14
+ {%- endif -%}</p>
15
+ </header>
16
+
17
+ <div class="post-content e-content" itemprop="articleBody">
18
+ {{ content }}
19
+ </div>
20
+
21
+ {%- if site.disqus.shortname -%}
22
+ {%- include disqus_comments.html -%}
23
+ {%- endif -%}
24
+
25
+ <a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
26
+ </article>
@@ -0,0 +1,24 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="posts">
6
+
7
+ {{ content }}
8
+
9
+ {%- if site.posts.size > 0 -%}
10
+ <h1>{{ page.list_title | default: "Posts" }}</h1>
11
+ {%- for post in site.posts -%}
12
+ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
13
+ <h3>
14
+ <a href='{{ post.url | relative_url }}'>{{ post.title | escape }}</a>
15
+ <small>{{ post.date | date: date_format }}</small>
16
+ </h3>
17
+ {%- if site.show_excerpts -%}
18
+ {{ post.excerpt }}
19
+ {%- endif -%}
20
+ {%- endfor -%}
21
+ <p class="rss-subscribe"><small>subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</small></a></p>
22
+ {%- endif -%}
23
+
24
+ </div>
@@ -0,0 +1,54 @@
1
+
2
+ @font-face {font-family: "iconfont";
3
+ src:
4
+ url('data:application/x-font-woff;charset=utf-8;base64,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') format('woff');
5
+ }
6
+
7
+ .i {
8
+ font-family:"iconfont" !important;
9
+ font-size:16px;
10
+ font-style:normal;
11
+ -webkit-font-smoothing: antialiased;
12
+ -moz-osx-font-smoothing: grayscale;
13
+ }
14
+
15
+ .i-repo:before { content: "\e635"; }
16
+
17
+ .i-github:before { content: "\ead8"; }
18
+
19
+ .i-octodex:before { content: "\e6cf"; }
20
+
21
+ .i-heart:before { content: "\e6df"; }
22
+
23
+ .i-diary:before { content: "\e6ca"; }
24
+
25
+ .i-css3:before { content: "\e6a8"; }
26
+
27
+ .i-steam:before { content: "\e7f7"; }
28
+
29
+ .i-chrome:before { content: "\e669"; }
30
+
31
+ .i-puzzle:before { content: "\ea20"; }
32
+
33
+ .i-soundcloud:before { content: "\e803"; }
34
+
35
+ .i-edge:before { content: "\e645"; }
36
+
37
+ .i-ie:before { content: "\e646"; }
38
+
39
+ .i-good:before { content: "\e62a"; }
40
+
41
+ .i-code-braces:before { content: "\e6be"; }
42
+
43
+ .i-discord:before { content: "\e6fe"; }
44
+
45
+ .i-firefox:before { content: "\e693"; }
46
+
47
+ .i-twitter:before { content: "\e749"; }
48
+
49
+ .i-cnblogs:before { content: "\e64d"; }
50
+
51
+ .i-netease-music:before { content: "\e658"; }
52
+
53
+ .i-law:before { content: "\e601"; }
54
+
data/assets/style.css ADDED
@@ -0,0 +1,265 @@
1
+ * {
2
+ margin: 0;
3
+ padding: 0;
4
+ }
5
+ html {
6
+ min-height: 100%;
7
+ background-color: #2C1B56;
8
+ }
9
+ body {
10
+ display: flex;
11
+ flex-direction: column;
12
+ align-items: center;
13
+ color: #B9AED2;
14
+ }
15
+ .flex-container {
16
+ display: flex;
17
+ flex-direction: column;
18
+ width: 75%;
19
+ }
20
+ h1,h2,h3,h4 {
21
+ line-height: 75px;
22
+ font-size: 30px;
23
+ margin: 10px;
24
+ color: #FFFFFF;
25
+ font-weight: lighter;
26
+ }
27
+ h2 {
28
+ line-height: 50px;
29
+ font-size: 24px;
30
+ }
31
+ h3 {
32
+ line-height: 46px;
33
+ font-size: 20px;
34
+ }
35
+ h4 {
36
+ line-height: 40px;
37
+ font-size: 20px;
38
+ }
39
+ h2:not(.sub-title), h3, h4, h5, h6 {
40
+ border-bottom: #472F82 1px solid;
41
+ }
42
+ .posts > h3 {
43
+ border-bottom: none;
44
+ }
45
+ h1 > small, h2 > small, h3 > small, h4 > small {
46
+ padding-left: 6px;
47
+ color: #B9AED2;
48
+ }
49
+ p {
50
+ margin: 10px;
51
+ line-height: 34px;
52
+ margin-bottom: 20px;
53
+ font-size: 18px;
54
+ color: #B9AED2;
55
+ }
56
+ p:empty {
57
+ display: none;
58
+ }
59
+ a {
60
+ color: #FFF;
61
+ border-bottom: 1px solid rgba(255,255,255,0.19);
62
+ transition: border .1s ease-out;
63
+ padding-bottom: 1px;
64
+ text-decoration: none;
65
+ }
66
+ a:hover {
67
+ border-bottom-color: #fff;
68
+ color: #FFF;
69
+ text-decoration: none;
70
+ }
71
+ .nobb {
72
+ border-bottom: none!important;
73
+ }
74
+ sup, sub {
75
+ vertical-align: baseline;
76
+ position: relative;
77
+ top: -0.4em;
78
+ }
79
+ sub {
80
+ top: 0.4em;
81
+ }
82
+ hr {
83
+ border: 0;
84
+ border-top: 1px solid #472F82;
85
+ margin-top: 20px;
86
+ margin-bottom: 20px;
87
+ }
88
+ pre {
89
+ background: rgba(29,17,64,0.85);
90
+ border: 0;
91
+ border-left: 4px solid #7371B7;
92
+ border-radius: 0;
93
+ color: #6C7887;
94
+ overflow-x: auto;
95
+ }
96
+ pre code {
97
+ overflow-wrap: normal;
98
+ white-space: pre;
99
+ color: #B4AEC5;
100
+ }
101
+ code {
102
+ background: #1F133E;
103
+ border: 0;
104
+ border-radius: 0;
105
+ color: #EBE7F5;
106
+ padding: 2px 4px;
107
+ font-size: 90%;
108
+ }
109
+ ul, ol {
110
+ line-height: 34px;
111
+ margin-bottom: 24px;
112
+ list-style: none;
113
+ font-size: 18px;
114
+ padding: 0;
115
+ margin: 10px;
116
+ }
117
+ div > ul > li:before, div:not(.footnotes) > ol > li:before {
118
+ content: '';
119
+ display: inline-block;
120
+ width: 10px;
121
+ height: 10px;
122
+ border-radius: 10px;
123
+ border: 2px solid #5E9CFF;
124
+ margin-right: 15px;
125
+ }
126
+ li > ul {
127
+ margin: 0 30px;
128
+ }
129
+ li > ul > li:before, li > ol > li:before {
130
+ content: '';
131
+ display: inline-block;
132
+ width: 10px;
133
+ height: 10px;
134
+ border-radius: 10px;
135
+ border: 2px solid #c0a5e8;
136
+ margin-right: 15px;
137
+ }
138
+ li {
139
+ line-height: 30px;
140
+ display: list-item;
141
+ }
142
+ .footnotes > ol {
143
+ list-style: decimal;
144
+ margin: 10px;
145
+ margin-left: 25px;
146
+ }
147
+ .footnotes > ol > li {
148
+ font-size: 14px;
149
+ }
150
+ li > p {
151
+ font-size: 14px;
152
+ display: inline;
153
+ }
154
+ header > nav {
155
+ width: 100%;
156
+ }
157
+ footer {
158
+ display: flex;
159
+ flex-direction: row;
160
+ margin-bottom: 2.61em;
161
+ justify-content: space-between;
162
+ }
163
+ details > summary {
164
+ transition: background-color 0.5s ease;
165
+ cursor: pointer;
166
+ line-height: 30px;
167
+ list-style: none;
168
+ font-size: 18px;
169
+ }
170
+ details > summary:hover {
171
+ background-color: #504BAD4A;
172
+ }
173
+ details > summary::-webkit-details-marker {
174
+ display: none;
175
+ }
176
+ details > p {
177
+ margin: 0 0 0 17px;
178
+ padding: 8px 0 8px 17px;
179
+ font-size: 16px;
180
+ border-left-width: 3px;
181
+ border-left-style: solid;
182
+ border-left-color: #2175bc;
183
+ background: #0000003f;
184
+ }
185
+ summary::before {
186
+ content: '';
187
+ font-size: 0;
188
+ display: inline-block;
189
+ width: 0;
190
+ height: 0;
191
+ border-top: 8px solid transparent;
192
+ border-bottom: 8px solid transparent;
193
+ border-left: 8px solid #5E9CFF;
194
+ margin: 0 15px;
195
+ }
196
+ details[open] > summary::before {
197
+ border-left: 8px solid transparent;
198
+ border-right: 8px solid transparent;
199
+ border-top: 8px solid #5E9CFF;
200
+ margin: 0px 12px 0px 10px;
201
+ }
202
+ nav > ul {
203
+ display: flex;
204
+ flex-direction: row;
205
+ justify-content: flex-end;
206
+ }
207
+ nav > ul > li {
208
+ margin-left: 1.2em;
209
+ padding: .61em;
210
+ font-size: 0.875rem;
211
+ border-bottom: 2px solid transparent;
212
+ transition: border-bottom-color 0.5s;
213
+ }
214
+ nav > ul > li:hover {
215
+ border-bottom: 2px solid transparent;
216
+ border-bottom-color: rgba(255,255,255,0.35);
217
+ transition: border-bottom-color 0.3s;
218
+ }
219
+ header > h1 {
220
+ margin: 0 10px;
221
+ padding: 0;
222
+ font-size: 3.125rem;
223
+ font-weight: normal;
224
+ }
225
+ header > h2 {
226
+ line-height: 1.6em;
227
+ margin: 0 10px;
228
+ padding: 0;
229
+ font-size: 0.9375rem;
230
+ font-weight: normal;
231
+ }
232
+ .flex {
233
+ display: flex;
234
+ }
235
+ .direction-row {
236
+ flex-direction: row;
237
+ }
238
+ .item-justify-center {
239
+ justify-content: center;
240
+ }
241
+ .item-align-center {
242
+ align-items: center;
243
+ align-content: center;
244
+ }
245
+ .flex-container > h1,h2 {
246
+ text-align: left!important;
247
+ text-align: center;
248
+ }
249
+ .flex-container > p {
250
+ text-align: left!important;
251
+ font-weight: lighter;
252
+ }
253
+ .flex-container > pre {
254
+ text-align: left!important;
255
+ margin: 10px;
256
+ padding: 40px;
257
+ font-weight: lighter;
258
+ }
259
+ .flex-container > div.placeholder {
260
+ background-color: #f1f1f1;
261
+ margin: 10px;
262
+ text-align: center;
263
+ line-height: 75px;
264
+ font-size: 30px;
265
+ }
metadata ADDED
@@ -0,0 +1,128 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-mutter
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Gary Wang
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-07-14 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.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-feed
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.9'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.9'
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: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.16'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.16'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '12.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '12.0'
83
+ description:
84
+ email:
85
+ - wzc782970009@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - LICENSE.txt
91
+ - README.md
92
+ - _includes/disqus_comments.html
93
+ - _includes/footer.html
94
+ - _includes/google-analytics.html
95
+ - _includes/head.html
96
+ - _includes/header.html
97
+ - _layouts/default.html
98
+ - _layouts/home.html
99
+ - _layouts/page.html
100
+ - _layouts/post.html
101
+ - _layouts/posts.html
102
+ - assets/iconfont.css
103
+ - assets/style.css
104
+ homepage: https://github.com/BLumia/jekyll-theme-mutter
105
+ licenses:
106
+ - MIT
107
+ metadata: {}
108
+ post_install_message:
109
+ rdoc_options: []
110
+ require_paths:
111
+ - lib
112
+ required_ruby_version: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ required_rubygems_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ requirements: []
123
+ rubyforge_project:
124
+ rubygems_version: 2.7.7
125
+ signing_key:
126
+ specification_version: 4
127
+ summary: A theme for jekyll.
128
+ test_files: []