jekyll-theme-poor 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0290ea130a2c2b89db1a0f249ab4b75c45b0857d
4
+ data.tar.gz: 3ffe4b0d6443b0c9954ae89ae176fae16ef081b8
5
+ SHA512:
6
+ metadata.gz: e40b86e87589dd2afaafb6656112d8bcfe8d5405edbb38bb5caf6c132c9b9b2e4ed3f90079fde84cbd9fc6982fd00386306568e96f043e450330f16c188dfc37
7
+ data.tar.gz: 6bd2a7da314d044ea6a835aaece28390da5e88281bf74f1a177649895bc28b5ae5f945f827d17f173f7181b22dd49baecea3463a4a7b8844b8854237cd0a1b9e
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Momingcoder
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.
@@ -0,0 +1,72 @@
1
+ # jekyll-theme-poor
2
+
3
+ ## Installation
4
+
5
+ Add this line to your Jekyll site's `Gemfile`:
6
+
7
+ ```ruby
8
+ gem "jekyll-theme-poor"
9
+ ```
10
+
11
+ And add this line to your Jekyll site's `_config.yml`:
12
+
13
+ ```yaml
14
+ theme: jekyll-theme-poor
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ $ bundle
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install jekyll-theme-poor
24
+
25
+ ## Usage
26
+
27
+ First, you need to give some information about yourself in `_config.yml`.
28
+
29
+ ```yml
30
+ email:
31
+ github_username:
32
+ title:
33
+ description:
34
+ author:
35
+ ```
36
+
37
+ `mathjax` is enabled by default, you can turn off this by adding settings below.
38
+
39
+ ```
40
+ mathjax:
41
+ enable: false
42
+ ```
43
+
44
+ You can alse write your own `sidebar.html` and `footer.html` and put them in `_includes`.
45
+
46
+ ## Preview
47
+
48
+ ### Desktop
49
+
50
+ ![Desktop](/assets/img/desktop.png)
51
+
52
+ ### Phone
53
+
54
+ ![Phone](/assets/img/phone.jpg)
55
+
56
+ ## Contributing
57
+
58
+ 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.
59
+
60
+ ## Development
61
+
62
+ To set up your environment to develop this theme, run `bundle install`.
63
+
64
+ 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.
65
+
66
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
67
+ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-theme-poor.gemspec` accordingly.
68
+
69
+ ## License
70
+
71
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
72
+
@@ -0,0 +1,19 @@
1
+ <div>
2
+ <div>
3
+ <h2>{{ site.title }}</h2>
4
+ <div>
5
+ <p>
6
+ <img src="{{ '/assets/img/email.png' | relative_url }}" alt="Email" width="15">
7
+ <a href="mailto:{{ site.email }}">{{ site.email }}</a>
8
+ </p>
9
+ <p>
10
+ <img src="{{ '/assets/img/github.png' | relative_url }}" alt="GitHub" width="15">
11
+ <a href="https://github.com/{{ site.github_username }}" target="_blank">{{ site.github_username }}</a>
12
+ </p>
13
+ <p>
14
+ <img src="{{ '/assets/img/rss.png' | relative_url }}" alt="RSS" width="15">
15
+ <a href="feed.xml" target="_blank">RSS</a>
16
+ </p>
17
+ </div>
18
+ </div>
19
+ </div>
@@ -0,0 +1,8 @@
1
+ <div class="footer text-center">
2
+ <hr>
3
+ <p class="post-info">
4
+ Copyright © 2018 {{ site.title }}.
5
+ Powered by <a href="https://jekyllrb.com/" target="_blank">Jekyll</a>.
6
+ Theme by <a href="https://github.com/{{ site.theme_author }}" target="_blank">{{ site.theme_author }}</a>.
7
+ </p>
8
+ </div>
@@ -0,0 +1,10 @@
1
+ <nav style="display:none;" id="nav-sidebar">
2
+ <div class="">
3
+ <button class="close-button" onclick="close_sidebar()">×</button>
4
+ </div>
5
+ <div class="content">
6
+ <div class="about">
7
+ {% include about.html %}
8
+ </div>
9
+ </div>
10
+ </nav>
@@ -0,0 +1,47 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ site.lang | default: "en" }}">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
7
+ <link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}" media="screen">
8
+ <title>{{ site.title }}</title>
9
+ </head>
10
+ <body>
11
+ <!-- sidebar -->
12
+ {% include sidebar.html %}
13
+
14
+ <header class="">
15
+ <div class="menu content-wrapper">
16
+ <p class="button" onclick="open_sidebar()">☰</p>
17
+ <p class="title"><a href="/">{{ site.title }}</a></p>
18
+ <p></p>
19
+ </div>
20
+ </header>
21
+
22
+ <div class="content-wrapper">
23
+ <div class="content">
24
+ {{ content }}
25
+ </div>
26
+ </div>
27
+
28
+ <footer>
29
+ {% include footer.html %}
30
+ </footer>
31
+
32
+ {% if site.mathjax.enable %}
33
+ <script type="text/x-mathjax-config">
34
+ MathJax.Hub.Config({
35
+ tex2jax: {
36
+ inlineMath: [ ['$','$'], ["\\(","\\)"] ],
37
+ processEscapes: true,
38
+ skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
39
+ }
40
+ });
41
+ </script>
42
+ <script src="{{ site.mathjax.cdn }}"></script>
43
+ {% endif %}
44
+
45
+ <script src="{{ '/assets/js/base.js' | relative_url }}"></script>
46
+ </body>
47
+ </html>
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,18 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <h1>{{ page.title }}</h1>
6
+
7
+ <p class="post-info">{{ page.date | date: "%-d %B %Y" }} Write by {{ page.author | default: site.author }}</p>
8
+
9
+ <div class="post-content">
10
+ {{ content }}
11
+ </div>
12
+
13
+ {% if page.tags %}
14
+ <p class="post-info text-center">
15
+ Tags: <em>{{ page.tags | join: "</em> - <em>" }}</em>
16
+ </p>
17
+ {% endif %}
18
+
@@ -0,0 +1,281 @@
1
+ @import "rouge-github"; // this file is forked from jekyll-theme-architect
2
+
3
+ body {
4
+ margin: 0;
5
+ padding: 0;
6
+ }
7
+
8
+ *, *:before, *:after {
9
+ box-sizing: inherit;
10
+ }
11
+
12
+ .title > a {
13
+ text-decoration: none;
14
+ }
15
+
16
+ .post-content h1::before {
17
+ content: '/';
18
+ color: #696969;
19
+ padding-right: 0.5em;
20
+ }
21
+
22
+ .post-content h2::before {
23
+ content: '//';
24
+ color: #696969;
25
+ padding-right: 0.5em;
26
+ }
27
+
28
+ .post-content h3::before {
29
+ content: '///';
30
+ color: #696969;
31
+ padding-right: 0.5em;
32
+ }
33
+
34
+ img {
35
+ max-width: -webkit-fill-available;
36
+ max-width: -moz-available;
37
+ }
38
+
39
+ header {
40
+ // border-top: 5px solid black;
41
+ background-color: #222;
42
+ color: #ddd;
43
+ }
44
+
45
+ .content-wrapper {
46
+ max-width: 1200px;
47
+ margin: auto;
48
+ }
49
+
50
+ .content {
51
+ max-width: 980px;
52
+ margin: auto;
53
+ padding: 15px;
54
+ }
55
+
56
+ .title {
57
+ font-family: "Comic Sans MS", "Comic Sans", cursive;
58
+ font-weight: 500;
59
+ }
60
+
61
+ .close-button {
62
+ float: right;
63
+ background-color: transparent;
64
+ font-size: 2em;
65
+ border: none;
66
+ }
67
+
68
+ footer {
69
+ max-width: 1080px;
70
+ margin: 10px auto;
71
+ }
72
+
73
+ code, kbd, pre, samp {
74
+ font-family: 'Courier New', Courier, monospace;
75
+ font-size: 1em;
76
+ }
77
+
78
+ a {
79
+ color: inherit;
80
+ }
81
+
82
+ .menu {
83
+ display: flex;
84
+ justify-content: space-between;
85
+ font-size: 2.3em;
86
+ }
87
+
88
+ nav {
89
+ width: 20%;
90
+ min-width: 250px;
91
+ display: block;
92
+ z-index: 2;
93
+ }
94
+
95
+ #nav-sidebar {
96
+ background-color: white;
97
+ animation: animateleft 0.5s;
98
+ height: 100%;
99
+ position: fixed!important;
100
+ overflow: auto;
101
+ border-right: #222 solid 5px;
102
+ }
103
+
104
+ .button {
105
+ padding: 0 5px;
106
+ }
107
+
108
+ .button:hover {
109
+ background-color: grey;
110
+ }
111
+
112
+ .pagination {
113
+ padding: 15px;
114
+ text-align: center;
115
+ font-size: 1.2em;
116
+ }
117
+
118
+ .text-center {
119
+ text-align: center!important;
120
+ }
121
+
122
+ .posts {
123
+ // width: 100%;
124
+ // margin: auto;
125
+ // padding: 8px 16px;
126
+ // display: inline-block;
127
+ //
128
+ -webkit-column-count: 3;
129
+ -webkit-column-gap: 10px;
130
+ -moz-column-count: 3;
131
+ -moz-column-gap: 10px;
132
+ column-count: 3;
133
+ column-gap: 10px;
134
+ }
135
+
136
+ .quart {
137
+ // width: 30%;
138
+ // padding: 0 15px;
139
+ // float: left;
140
+ //
141
+ margin: 0 0 10px 0;
142
+ -webkit-column-break-inside: avoid;
143
+ -moz-column-break-inside: avoid;
144
+ break-inside: avoid-column;
145
+ // border: #222 solid 1px;
146
+ overflow: hidden;
147
+ box-shadow: 5px 5px 10px #888888;
148
+ }
149
+
150
+ @media only screen and (max-width: 767px) {
151
+ .posts {
152
+ -webkit-column-count: 1;
153
+ -webkit-column-gap: 10px;
154
+ -moz-column-count: 1;
155
+ -moz-column-gap: 10px;
156
+ column-count: 1;
157
+ column-gap: 10px;
158
+ }
159
+ }
160
+
161
+ .post-info {
162
+ color: #556E6E;
163
+ font-style: italic;
164
+ }
165
+
166
+ .post-head {
167
+ background-color: #222;
168
+ color: #ddd;
169
+ display: inline-block;
170
+ width: 100%;
171
+ padding: 10px;
172
+ }
173
+
174
+ .post-body {
175
+ background-color: inherit;
176
+ padding: 10px;
177
+ }
178
+
179
+ blockquote {
180
+ border-left: #696969 solid 3px;
181
+ margin: 5px 5px 5px 0;
182
+ padding: 0px 10px;
183
+ color: #252525;
184
+ }
185
+
186
+
187
+ // fork from jekyll-theme-architect
188
+
189
+ code, pre {
190
+ margin-bottom: 30px;
191
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
192
+ font-size: 13px;
193
+ color: #222;
194
+ }
195
+
196
+ code {
197
+ padding: 3px;
198
+ background-color: #c6cacc;
199
+ border-radius: 3px;
200
+ }
201
+
202
+ pre {
203
+ padding: 20px;
204
+ overflow: auto;
205
+ text-shadow: none;
206
+ background: #fff;
207
+ border: solid 1px #f2f2f2;
208
+ }
209
+ pre code {
210
+ padding: 0;
211
+ color: #212B2B;
212
+ background-color: #fff;
213
+ border: none;
214
+ }
215
+
216
+ hr {
217
+ height: 0;
218
+ margin-top: 1em;
219
+ margin-bottom: 1em;
220
+ border: 0;
221
+ border-top: solid 1px #ddd;
222
+ }
223
+
224
+ table {
225
+ width: 100%;
226
+ border: 1px solid #ebebeb;
227
+ }
228
+
229
+ th {
230
+ font-weight: 500;
231
+ }
232
+
233
+ td {
234
+ font-weight: 300;
235
+ text-align: center;
236
+ border: 1px solid #ebebeb;
237
+ }
238
+
239
+ form {
240
+ padding: 20px;
241
+ background: #f2f2f2;
242
+ }
243
+
244
+ table {
245
+ font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
246
+ font-size: 12px;
247
+ // width: 900px;
248
+ text-align: center;
249
+ border-collapse: collapse;
250
+ border: 1px solid #252525;
251
+ box-shadow: 5px 5px 10px #888888;
252
+ cursor: default;
253
+ margin-top: 20px;
254
+ table-layout: fixed;
255
+ }
256
+
257
+ table th {
258
+ text-align: center;
259
+ font-weight: normal;
260
+ font-size: 14px;
261
+ color: #ffffff;
262
+ background-color: #252525;
263
+ border-bottom: 1px dashed #252525;
264
+ padding: 12px 17px;
265
+ white-space: nowrap;
266
+ }
267
+
268
+ table td {
269
+ color: #000;
270
+ padding: 7px 17px;
271
+ white-space: normal;
272
+ }
273
+
274
+ table tr.alt {
275
+ background-color: #f3f3f3;
276
+ }
277
+
278
+ table tbody tr:hover td {
279
+ color: #000;
280
+ background: #b7b7b7;
281
+ }
@@ -0,0 +1,209 @@
1
+ .highlight table td { padding: 5px; }
2
+ .highlight table pre { margin: 0; }
3
+ .highlight .cm {
4
+ color: #999988;
5
+ font-style: italic;
6
+ }
7
+ .highlight .cp {
8
+ color: #999999;
9
+ font-weight: bold;
10
+ }
11
+ .highlight .c1 {
12
+ color: #999988;
13
+ font-style: italic;
14
+ }
15
+ .highlight .cs {
16
+ color: #999999;
17
+ font-weight: bold;
18
+ font-style: italic;
19
+ }
20
+ .highlight .c, .highlight .cd {
21
+ color: #999988;
22
+ font-style: italic;
23
+ }
24
+ .highlight .err {
25
+ color: #a61717;
26
+ background-color: #e3d2d2;
27
+ }
28
+ .highlight .gd {
29
+ color: #000000;
30
+ background-color: #ffdddd;
31
+ }
32
+ .highlight .ge {
33
+ color: #000000;
34
+ font-style: italic;
35
+ }
36
+ .highlight .gr {
37
+ color: #aa0000;
38
+ }
39
+ .highlight .gh {
40
+ color: #999999;
41
+ }
42
+ .highlight .gi {
43
+ color: #000000;
44
+ background-color: #ddffdd;
45
+ }
46
+ .highlight .go {
47
+ color: #888888;
48
+ }
49
+ .highlight .gp {
50
+ color: #555555;
51
+ }
52
+ .highlight .gs {
53
+ font-weight: bold;
54
+ }
55
+ .highlight .gu {
56
+ color: #aaaaaa;
57
+ }
58
+ .highlight .gt {
59
+ color: #aa0000;
60
+ }
61
+ .highlight .kc {
62
+ color: #000000;
63
+ font-weight: bold;
64
+ }
65
+ .highlight .kd {
66
+ color: #000000;
67
+ font-weight: bold;
68
+ }
69
+ .highlight .kn {
70
+ color: #000000;
71
+ font-weight: bold;
72
+ }
73
+ .highlight .kp {
74
+ color: #000000;
75
+ font-weight: bold;
76
+ }
77
+ .highlight .kr {
78
+ color: #000000;
79
+ font-weight: bold;
80
+ }
81
+ .highlight .kt {
82
+ color: #445588;
83
+ font-weight: bold;
84
+ }
85
+ .highlight .k, .highlight .kv {
86
+ color: #000000;
87
+ font-weight: bold;
88
+ }
89
+ .highlight .mf {
90
+ color: #009999;
91
+ }
92
+ .highlight .mh {
93
+ color: #009999;
94
+ }
95
+ .highlight .il {
96
+ color: #009999;
97
+ }
98
+ .highlight .mi {
99
+ color: #009999;
100
+ }
101
+ .highlight .mo {
102
+ color: #009999;
103
+ }
104
+ .highlight .m, .highlight .mb, .highlight .mx {
105
+ color: #009999;
106
+ }
107
+ .highlight .sb {
108
+ color: #d14;
109
+ }
110
+ .highlight .sc {
111
+ color: #d14;
112
+ }
113
+ .highlight .sd {
114
+ color: #d14;
115
+ }
116
+ .highlight .s2 {
117
+ color: #d14;
118
+ }
119
+ .highlight .se {
120
+ color: #d14;
121
+ }
122
+ .highlight .sh {
123
+ color: #d14;
124
+ }
125
+ .highlight .si {
126
+ color: #d14;
127
+ }
128
+ .highlight .sx {
129
+ color: #d14;
130
+ }
131
+ .highlight .sr {
132
+ color: #009926;
133
+ }
134
+ .highlight .s1 {
135
+ color: #d14;
136
+ }
137
+ .highlight .ss {
138
+ color: #990073;
139
+ }
140
+ .highlight .s {
141
+ color: #d14;
142
+ }
143
+ .highlight .na {
144
+ color: #008080;
145
+ }
146
+ .highlight .bp {
147
+ color: #999999;
148
+ }
149
+ .highlight .nb {
150
+ color: #0086B3;
151
+ }
152
+ .highlight .nc {
153
+ color: #445588;
154
+ font-weight: bold;
155
+ }
156
+ .highlight .no {
157
+ color: #008080;
158
+ }
159
+ .highlight .nd {
160
+ color: #3c5d5d;
161
+ font-weight: bold;
162
+ }
163
+ .highlight .ni {
164
+ color: #800080;
165
+ }
166
+ .highlight .ne {
167
+ color: #990000;
168
+ font-weight: bold;
169
+ }
170
+ .highlight .nf {
171
+ color: #990000;
172
+ font-weight: bold;
173
+ }
174
+ .highlight .nl {
175
+ color: #990000;
176
+ font-weight: bold;
177
+ }
178
+ .highlight .nn {
179
+ color: #555555;
180
+ }
181
+ .highlight .nt {
182
+ color: #000080;
183
+ }
184
+ .highlight .vc {
185
+ color: #008080;
186
+ }
187
+ .highlight .vg {
188
+ color: #008080;
189
+ }
190
+ .highlight .vi {
191
+ color: #008080;
192
+ }
193
+ .highlight .nv {
194
+ color: #008080;
195
+ }
196
+ .highlight .ow {
197
+ color: #000000;
198
+ font-weight: bold;
199
+ }
200
+ .highlight .o {
201
+ color: #000000;
202
+ font-weight: bold;
203
+ }
204
+ .highlight .w {
205
+ color: #bbbbbb;
206
+ }
207
+ .highlight {
208
+ background-color: #f8f8f8;
209
+ }
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import 'jekyll-theme-poor';
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,7 @@
1
+ function open_sidebar() {
2
+ document.getElementById('nav-sidebar').style.display = 'block';
3
+ }
4
+
5
+ function close_sidebar() {
6
+ document.getElementById('nav-sidebar').style.display = 'none';
7
+ }
metadata ADDED
@@ -0,0 +1,103 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-poor
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Momingcoder
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-03-24 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.7'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.16'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.16'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '12.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '12.0'
55
+ description:
56
+ email:
57
+ - kemingy94@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.txt
63
+ - README.md
64
+ - _includes/about.html
65
+ - _includes/footer.html
66
+ - _includes/sidebar.html
67
+ - _layouts/default.html
68
+ - _layouts/page.html
69
+ - _layouts/post.html
70
+ - _sass/jekyll-theme-poor.scss
71
+ - _sass/rouge-github.scss
72
+ - assets/css/style.scss
73
+ - assets/img/desktop.png
74
+ - assets/img/email.png
75
+ - assets/img/github.png
76
+ - assets/img/phone.jpg
77
+ - assets/img/rss.png
78
+ - assets/js/base.js
79
+ homepage: https://github.com/momingcoder
80
+ licenses:
81
+ - MIT
82
+ metadata: {}
83
+ post_install_message:
84
+ rdoc_options: []
85
+ require_paths:
86
+ - lib
87
+ required_ruby_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ requirements: []
98
+ rubyforge_project:
99
+ rubygems_version: 2.5.2.1
100
+ signing_key:
101
+ specification_version: 4
102
+ summary: poor theme
103
+ test_files: []