jekyll-theme-lycorma 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: 46db4e02d01b9be8d353d7b54a1ebbf8e791c03bf3cdd070e7cf10e0b6910fd2
4
+ data.tar.gz: a2e1678c1d53544456621d0dd357a9ac66ab1cb94cfe115494c0babe5b2ac7eb
5
+ SHA512:
6
+ metadata.gz: 458ee1288f4ceea0f7a63b822177a93065a13e8815c427f2f5f53733ae79751334a55cbc28204b1d26265ad90862d6c93a94c18eabd9e5138e7d1b67646ee5b8
7
+ data.tar.gz: ef390e18982750b21587ff78b3a95d8152a7a1d5781d68e8606a82edf16f059a096b11bbca710a9a010b1af4c4cf767077416344e0244c886065c27adbb68b1d
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018
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,71 @@
1
+ # Lycorma
2
+
3
+ A Jekyll theme designed from the ground up to work well for serialized
4
+ fiction.
5
+
6
+
7
+ ## Installation
8
+
9
+ Add this line to your Jekyll site's `Gemfile`:
10
+
11
+ ```ruby
12
+ gem "jekyll-theme-lycorma"
13
+ ```
14
+
15
+ And add this line to your Jekyll site's `_config.yml`:
16
+
17
+ ```yaml
18
+ theme: jekyll-theme-lycorma
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install jekyll-theme-lycorma
28
+
29
+ ## Usage
30
+
31
+ There is no pagination currently, and there is only one layout. All
32
+ styling is done in `main.scss` except for the initial reset (in
33
+ `/_sass/reset.scss`) and the syntax highlighting (in
34
+ `/_sass/syntax.css`, borrowed from github and mostly ignored because
35
+ this theme isn't intended for discussing software).
36
+
37
+ For a page to appear in the sidebar, it needs `sidebar: true` set in
38
+ it's frontmatter.
39
+
40
+ Each post is assumed to have the following front matter, as well:
41
+
42
+ * `title:` The title of Your piece.
43
+ * `description:` A short synopsis of Your piece.
44
+ * `date:` The original date Your piece was published.
45
+
46
+ It's also important that You specify certain things in the
47
+ `_config.yml` file. There are a few nonstandard settings:
48
+
49
+ * `license:` The license for Your work. I recommend a Creative Commons
50
+ license of some sort, but You do You.
51
+ * `licurl:` The url of whichever license You've chosen for Your work.
52
+ * `author:` The name of the license holder (that is, probably Your
53
+ name) for the work.
54
+
55
+
56
+
57
+ ## Contributing
58
+
59
+ Bug reports and pull requests are welcome on GitHub at
60
+ https://github.com/cdr255/jekyll-theme-lycorma. This project is
61
+ intended to be a safe, welcoming space for collaboration, and
62
+ contributors are expected to adhere to the [Contributor
63
+ Covenant](http://contributor-covenant.org) code of conduct.
64
+
65
+ That said, this project is in use by me, and is subject to change if
66
+ my whims carry me there.
67
+
68
+ ## License
69
+
70
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
71
+
@@ -0,0 +1,5 @@
1
+ <footer>
2
+
3
+ <span>All original content &copy;2015-2018 <a href="{{ site.email }}">{{ site.author }}</a>. Licensed to the General Public under <a href="{{site.licurl }}">{{ site.license }}</a>.</span>
4
+
5
+ </footer>
@@ -0,0 +1,25 @@
1
+ <header role="banner">
2
+ <a href="{{ "/" | relative_url }}"><h1>{{ site.title | escape }}</h1></a>
3
+ <p>{{ site.description }}</p>
4
+ <hr>
5
+ {% assign default_paths = site.pages | map: "path" %}
6
+ {% assign page_paths = site.header_pages | default: default_paths %}
7
+ {% if page_paths %}
8
+ <nav>
9
+ <ul>
10
+ {% for path in page_paths %}
11
+ {% assign this_page = site.pages | where: "path", path | first %}
12
+ {% unless this_page.efn %}
13
+ {% if this_page.title %}
14
+ <a href="{{ this_page.url | relative_url }}">
15
+ <li>{{ this_page.title | default: "UNNAMED PAGE" }}
16
+ </li>
17
+ </a>
18
+ {% endif %}
19
+ {% endunless %}
20
+ {% endfor %}
21
+ </ul>
22
+ </nav>
23
+ {% endif %}
24
+ </header>
25
+
@@ -0,0 +1,7 @@
1
+ <!-- Font Awesome Brands and Solids from CDN -->
2
+ <script src="https://use.fontawesome.com/releases/v5.0.6/js/brands.js"></script>
3
+ <script src="https://use.fontawesome.com/releases/v5.0.6/js/solid.js"></script>
4
+ <script src="https://use.fontawesome.com/releases/v5.0.6/js/fontawesome.js"></script>
5
+
6
+ <!-- Google Web Fonts CDN -->
7
+ <link href="https://fonts.googleapis.com/css?family=Merienda|Source+Sans+Pro" rel="stylesheet">
@@ -0,0 +1,10 @@
1
+ <meta charset="utf-8">
2
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1">
4
+ <title>
5
+ {% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}
6
+ </title>
7
+ <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
8
+ <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
9
+ <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
10
+ <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
@@ -0,0 +1,28 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+ <head>
4
+
5
+ <!-- META START -->
6
+ {% include meta.html %}
7
+ <!-- META END -->
8
+ <!-- IMPORTS START -->
9
+ {% include imports.html%}
10
+ <!-- IMPORTS END -->
11
+ </head>
12
+
13
+ <body>
14
+
15
+ <!-- HEADER START -->
16
+ {% include header.html %}
17
+ <!-- HEADER END -->
18
+
19
+ <div class="content">
20
+ {{ content }}
21
+
22
+ <!-- FOOTER START -->
23
+ {% include footer.html %}
24
+ <!-- FOOTER END -->
25
+ </div>
26
+
27
+ </body>
28
+ </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/reset.scss ADDED
@@ -0,0 +1,52 @@
1
+ /* http://meyerweb.com/eric/tools/css/reset/
2
+ v2.0 | 20110126
3
+ License: none (public domain)
4
+ */
5
+
6
+ html, body, div, span, applet, object, iframe,
7
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
8
+ a, abbr, acronym, address, big, cite, code,
9
+ del, dfn, em, img, ins, kbd, q, s, samp,
10
+ small, strike, strong, sub, sup, tt, var,
11
+ b, u, i, center,
12
+ dl, dt, dd, ol, ul, li,
13
+ fieldset, form, label, legend,
14
+ table, caption, tbody, tfoot, thead, tr, th, td,
15
+ article, aside, canvas, details, embed,
16
+ figure, figcaption, footer, header, hgroup,
17
+ menu, nav, output, ruby, section, summary,
18
+ time, mark, audio, video {
19
+ margin: 0;
20
+ padding: 0;
21
+ border: 0;
22
+ font-size: 100%;
23
+ font: inherit;
24
+ vertical-align: baseline;
25
+ }
26
+ /* HTML5 display-role reset for older browsers */
27
+ article, aside, details, figcaption, figure,
28
+ footer, header, hgroup, menu, nav, section {
29
+ display: block;
30
+ }
31
+ body {
32
+ line-height: 1;
33
+ }
34
+ ol, ul {
35
+ list-style: none;
36
+ }
37
+ blockquote, q {
38
+ quotes: none;
39
+ }
40
+ blockquote:before, blockquote:after,
41
+ q:before, q:after {
42
+ content: '';
43
+ content: none;
44
+ }
45
+ table {
46
+ border-collapse: collapse;
47
+ border-spacing: 0;
48
+ }
49
+
50
+
51
+ a { text-decoration-line: none;
52
+ color: inherit; }
data/_sass/syntax.scss ADDED
@@ -0,0 +1,60 @@
1
+ .highlight { background: #ffffff; }
2
+ .highlight .c { color: #999988; font-style: italic } /* Comment */
3
+ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4
+ .highlight .k { font-weight: bold } /* Keyword */
5
+ .highlight .o { font-weight: bold } /* Operator */
6
+ .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
7
+ .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
8
+ .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
9
+ .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
10
+ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11
+ .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
12
+ .highlight .ge { font-style: italic } /* Generic.Emph */
13
+ .highlight .gr { color: #aa0000 } /* Generic.Error */
14
+ .highlight .gh { color: #999999 } /* Generic.Heading */
15
+ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
16
+ .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
17
+ .highlight .go { color: #888888 } /* Generic.Output */
18
+ .highlight .gp { color: #555555 } /* Generic.Prompt */
19
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
20
+ .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
21
+ .highlight .gt { color: #aa0000 } /* Generic.Traceback */
22
+ .highlight .kc { font-weight: bold } /* Keyword.Constant */
23
+ .highlight .kd { font-weight: bold } /* Keyword.Declaration */
24
+ .highlight .kp { font-weight: bold } /* Keyword.Pseudo */
25
+ .highlight .kr { font-weight: bold } /* Keyword.Reserved */
26
+ .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
27
+ .highlight .m { color: #009999 } /* Literal.Number */
28
+ .highlight .s { color: #d14 } /* Literal.String */
29
+ .highlight .na { color: #008080 } /* Name.Attribute */
30
+ .highlight .nb { color: #0086B3 } /* Name.Builtin */
31
+ .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
32
+ .highlight .no { color: #008080 } /* Name.Constant */
33
+ .highlight .ni { color: #800080 } /* Name.Entity */
34
+ .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
35
+ .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
36
+ .highlight .nn { color: #555555 } /* Name.Namespace */
37
+ .highlight .nt { color: #000080 } /* Name.Tag */
38
+ .highlight .nv { color: #008080 } /* Name.Variable */
39
+ .highlight .ow { font-weight: bold } /* Operator.Word */
40
+ .highlight .w { color: #bbbbbb } /* Text.Whitespace */
41
+ .highlight .mf { color: #009999 } /* Literal.Number.Float */
42
+ .highlight .mh { color: #009999 } /* Literal.Number.Hex */
43
+ .highlight .mi { color: #009999 } /* Literal.Number.Integer */
44
+ .highlight .mo { color: #009999 } /* Literal.Number.Oct */
45
+ .highlight .sb { color: #d14 } /* Literal.String.Backtick */
46
+ .highlight .sc { color: #d14 } /* Literal.String.Char */
47
+ .highlight .sd { color: #d14 } /* Literal.String.Doc */
48
+ .highlight .s2 { color: #d14 } /* Literal.String.Double */
49
+ .highlight .se { color: #d14 } /* Literal.String.Escape */
50
+ .highlight .sh { color: #d14 } /* Literal.String.Heredoc */
51
+ .highlight .si { color: #d14 } /* Literal.String.Interpol */
52
+ .highlight .sx { color: #d14 } /* Literal.String.Other */
53
+ .highlight .sr { color: #009926 } /* Literal.String.Regex */
54
+ .highlight .s1 { color: #d14 } /* Literal.String.Single */
55
+ .highlight .ss { color: #990073 } /* Literal.String.Symbol */
56
+ .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
57
+ .highlight .vc { color: #008080 } /* Name.Variable.Class */
58
+ .highlight .vg { color: #008080 } /* Name.Variable.Global */
59
+ .highlight .vi { color: #008080 } /* Name.Variable.Instance */
60
+ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
data/assets/main.scss ADDED
@@ -0,0 +1,212 @@
1
+ ---
2
+ ---
3
+
4
+
5
+ $font-header: 'Merienda', cursive;
6
+ $font-body: 'Source Sans Pro', sans-serif;
7
+ $color-frame: #DBDBDB;
8
+ $color-main-normal: #795548;
9
+ $color-main-light: #D7CCC8;
10
+ $color-main-dark: #5D4037;
11
+ $color-bg: #FFFFFF;
12
+ $color-accent: #9E9E9E;
13
+ $color-text-normal: #212121;
14
+ $color-text-alt: #757575;
15
+ $color-divider: #BDBDBD;
16
+
17
+ @import "reset";
18
+
19
+ html { height: 100%; }
20
+ body {
21
+ height: 100%;
22
+ max-width: 100%;
23
+ background-color: $color-bg;
24
+
25
+
26
+ // HEADER SIDEBAR
27
+ header {
28
+ position: fixed;
29
+ height: 100%;
30
+ width: 25%;
31
+ min-width: 10em;
32
+ margin-right: 2em;
33
+ background-color: $color-main-normal;
34
+ padding: 0;
35
+ text-align: center;
36
+
37
+ h1 {
38
+ font-family: $font-header;
39
+ font-size: xx-large;
40
+ color: $color-text-normal;
41
+ background-color: $color-main-dark;
42
+ padding-top: 1em;
43
+ padding-bottom: 1em;
44
+ min-height: 5%;
45
+ max-height: 13%;
46
+ }
47
+
48
+ p {
49
+ font-family: $font-body;
50
+ color: $color-text-alt;
51
+ background-color: $color-main-dark;
52
+ padding-bottom: 2em;
53
+ padding-right: 25%;
54
+ padding-left: 25%;
55
+ text-align: center;
56
+ }
57
+
58
+ hr {
59
+ padding: 0;
60
+ margin: 0;
61
+ style: none;
62
+ color: $color-divider;
63
+ }
64
+
65
+ nav {
66
+ margin-top: 1em;
67
+ font-size: large;
68
+
69
+ li {
70
+ padding: 1em;
71
+ letter-spacing: 0.5em;
72
+ margin-bottom: 2em;
73
+ }
74
+ }
75
+ }
76
+
77
+ // ACTUAL CONTENT
78
+ .content {
79
+ width: 60%;
80
+ min-width: 20em;
81
+ margin-left: 28%;
82
+ margin-right: 1em;
83
+ padding: 2em;
84
+
85
+ background-color: $color-bg;
86
+
87
+ h1,h2,h3,h4,h5 {
88
+ letter-spacing: 0.5em;
89
+ color: $color-text-normal;
90
+ font-family: $font-body;
91
+ padding-top: 2em;
92
+ padding-bottom: 1em;
93
+ text-align: center;
94
+ }
95
+ h1 {
96
+ font-size: xx-large;
97
+ }
98
+ h2 {
99
+ font-size: x-large;
100
+ }
101
+ h3 {
102
+ font-size: large;
103
+ }
104
+ h4 {
105
+ font-size: normal;
106
+ }
107
+ h5 {
108
+ font-size: small;
109
+ }
110
+ hr {
111
+ margin-top: 2em;
112
+ margin-bottom: 2em;
113
+ border: 0;
114
+ height: 1px;
115
+ background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
116
+ background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
117
+ background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
118
+ background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
119
+ width: 40%;
120
+ }
121
+
122
+ p {
123
+ width: 100%;
124
+ margin: 1em;
125
+ }
126
+ code {
127
+ background-color: $color-bg;
128
+ }
129
+
130
+ ul,ol {
131
+ text-align: center;
132
+ }
133
+
134
+ ul {
135
+ list-style: circle inside;
136
+ }
137
+
138
+ ol {
139
+ list-style: upper-roman outside;
140
+ }
141
+
142
+ table {
143
+ text-align: center;
144
+ margin-left: auto;
145
+ margin-right: auto;
146
+ border: 1px solid $color-accent;
147
+ border-collapse: collapse;
148
+
149
+ th {
150
+ padding: 1em;
151
+ font-size: large;
152
+ background-color: $color-divider;
153
+ border: 1px solid $color-accent;
154
+ }
155
+
156
+ td {
157
+ padding: 0.75em;
158
+ border: 1px solid $color-accent;
159
+ }
160
+
161
+ tr:nth-child(even) {
162
+ background-color: $color-divider;
163
+ }
164
+ }
165
+
166
+ blockquote {
167
+ margin: auto;
168
+ width: 60%;
169
+ background-color: $color-divider;
170
+ border: 1px solid $color-accent;
171
+ padding: 1em;
172
+ font-size: small;
173
+
174
+ cite {
175
+ font-style: italic;
176
+ }
177
+ }
178
+
179
+ footer {
180
+ padding-top: 2em;
181
+ text-align: center;
182
+ span {
183
+ color: $color-text-normal;
184
+ font-size: x-small;
185
+ text-align: right;
186
+
187
+ }
188
+ }
189
+ em {
190
+ font-style: italic;
191
+ }
192
+ strong {
193
+ font-style: bold;
194
+ }
195
+ pre {
196
+ margin: 1em;
197
+ text-align: center;
198
+ }
199
+ .synopsis {
200
+ text-align: center;
201
+ margin: auto;
202
+ width: 65%;
203
+ font-size: small;
204
+ font-style: italic;
205
+ padding: 1em;
206
+ border: 1px solid $color-accent;
207
+ background-color: $color-divider;
208
+ }
209
+ }
210
+ }
211
+
212
+ @import "syntax";
metadata ADDED
@@ -0,0 +1,112 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-lycorma
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Christopher Rodriguez
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-02-25 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
+ - !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.9.3
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.9.3
69
+ description:
70
+ email:
71
+ - cdr255@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - LICENSE
77
+ - README.md
78
+ - _includes/footer.html
79
+ - _includes/header.html
80
+ - _includes/imports.html
81
+ - _includes/meta.html
82
+ - _layouts/default.html
83
+ - _layouts/page.html
84
+ - _layouts/post.html
85
+ - _sass/reset.scss
86
+ - _sass/syntax.scss
87
+ - assets/main.scss
88
+ homepage: https://github.com/cdr255/jekyll-theme-lycorma
89
+ licenses:
90
+ - MIT
91
+ metadata: {}
92
+ post_install_message:
93
+ rdoc_options: []
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ requirements: []
107
+ rubyforge_project:
108
+ rubygems_version: 2.7.3
109
+ signing_key:
110
+ specification_version: 4
111
+ summary: A theme designed around the idea of a short, serialized fiction website.
112
+ test_files: []