jekyll-oedipus-theme 0.5.1 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 247f35fd43d5ad6558f3dadfaff25f8c9810cfe6ea3756d497af92d387b20add
4
- data.tar.gz: 74731ab0f28e29cf73117da85608eb42845410fa3bafbfa8746cbd2806190066
3
+ metadata.gz: 2a135d74c506d1aff540cda4077592df9d7edb74af2ceb00a1ce6ad413f14f38
4
+ data.tar.gz: 15bb7a54385486481d12ff828416298bf652f7f548aab28885bcada436de31eb
5
5
  SHA512:
6
- metadata.gz: 8947a9c0a5fefdb3d636d8b990803384480dd12758da5a52836e5aef94c34ea67f943bf51a3b7f3e2dc09e13db183cc6c7cdb72a02f6dfa5889222c5704c4590
7
- data.tar.gz: 0e8400076d1f4ff7f32c741f6e729a55fb47ddabd82470fc62eb21ebd3024c130853a4452a0a86ffa3b990f44311eb0d7a660d6f9f9bb2428929f2582c5a4bfe
6
+ metadata.gz: de13fb49286552a0d74a30b6bd1235e3bed0579c90c90f9b153505a0955f8b2780933dac8f6859869187c25f9542fd25fb8ed85139b009b79de9b92a27652dd1
7
+ data.tar.gz: 61ab7042cae4cb0218dc963fe3d40a296322292c884027e361e5b544c34fa4acc74af961910210b07610f70fc4762243d360b6b03b02c7ca1a0fdfb74bd5bd04
data/README.md CHANGED
@@ -6,7 +6,7 @@ Build a motherfucking website with Jekyll (patricide optional).
6
6
 
7
7
  ## Screenshot
8
8
 
9
- ![Oedipus rendered on a Thinkpad T60 in Firefox ESR](https://github.com/matthewgraybosch/jekyll-oedipus-theme/blob/main/screenshot.png?raw=true)
9
+ ![Oedipus rendered on a Thinkpad T60 in Firefox ESR](https://raw.githubusercontent.com/matthewgraybosch/jekyll-oedipus-theme/main/screenshot.png)
10
10
 
11
11
  ## Installation
12
12
 
@@ -32,19 +32,114 @@ Or install it yourself as:
32
32
 
33
33
  ## Usage
34
34
 
35
- TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
35
+ **Oedipus** can be customized to a great extent in [`_config.yml`](https://github.com/matthewgraybosch/jekyll-oedipus-theme/blob/main/_config.yml), but if you want to [override any part of the theme](https://jekyllrb.com/docs/themes/), you'll want a list of what's included.
36
+
37
+ ### _config.yml
38
+
39
+ All options for this theme are contained under the "site.oedipus" root. Therefore, the "rights" option listed below is actually "site.oedipus.rights".
40
+
41
+ - **rights**: a string that goes into the copyright line in the page footer
42
+ - **license.text.name**: a string identifying the license for your site's text
43
+ - **license.text.url**: the URL of the license for your site's text
44
+ - **license.code.name**: a string identifying the license for your site's code
45
+ - **license.code.url**: the URL of the license for your site's code
46
+ - **made-with**: a string indicating how the site was made.
47
+
48
+ The stylesheet for Oedipus is also configurable, and all style options are contained under "site.oedipus.style". The default colors were selected from [Color Safe](http://colorsafe.co/) for accessibility. The dark theme takes each of these variables and applies the [Sass `invert()`](https://sass-lang.com/documentation/modules/color) function to them.
49
+
50
+ - **bg-color**: set background color
51
+ - **fg-color**: set text color
52
+ - **link-color**: set default link color
53
+ - **link-hover-color**: change a link to this color on mouseover
54
+ - **link-active-color**: change a link to this color when clicked
55
+ - **link-visited-color**: change visited links to this color
56
+ - **border-thickness**: set the thickness for borders
57
+ - **hr-border-thickness**: set thickness for <hr> elements. Set this to half your intended value.
58
+ - **html-font-size**: allows use of [rem units](https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Values_and_units) for consistent scaling. Defaults to "medium".
59
+ - **body-margin**: control distance between text and screen edges
60
+ - **content-font-size**: Sets font-size for most text.
61
+ - **content-font-family**: Sets the font-family for most text. Use this to define a custom font stack.
62
+ - **content-line-height**: Sets separation between lines of text.
63
+ - **preformatted-font-size**: Sets font-size for preformatted-text and code.
64
+ - **preformatted-font-family**: Sets the font-family for most preformatted-text and code. Use this to define a custom font stack.
65
+ - **content-width**: Sets the content width in <main> and <article>
66
+ - **content-centered**: When true, Oedipus will horizontally center content.
67
+ - **compact-header**: When true, Oedipus will place the site title and description inside the masthead's <h1>.
68
+ - **home-header-icon** When true, any page assigned the "home" layout will show `/assets/favicon.svg` as part of the masthead.
36
69
 
37
70
  ### Layouts
38
71
 
39
- * **base.html**: a wrapper layout that sets language and encoding, sets up a skip navigation link, and links to favicons, stylesheets, and feeds.
72
+ * **base.html**: a wrapper layout that sets language and encoding, sets up a skip navigation link, and links to favicons, stylesheets, and feeds. Also provides a target for `jekyll-seo-tag`.
73
+ * **default.html**: this wraps around **page.html** and **post.html** to provide headers, footers, and navigation.
74
+ * **home.html**: for your site's home page. It provides custom headers and footers in case you don't want nav bars on your landing page.
75
+ * **page.html**: for pages and other non-blog material. It wraps content inside a <main> element.
76
+ * **post.html**: for blog posts. It wraps content inside an <article> element and provides a footer for subscription and contact info.
77
+
78
+ ### Includes
79
+
80
+ * **masthead.html**: displays the site's title and description.
81
+ * **skip.html**: implements a [skip navigation](https://webaim.org/techniques/skipnav/) link.
82
+ * **navbar.html**: implements a navigation bar. It accepts "id", "label", and "source" arguments. Source is a data source accessible via `site.data`.
83
+ * **navlist.html**: implements an unordered navigation list and takes the same arguments as navbar.html.
84
+ * **header.html**: the default header for most pages and posts. Includes a navigation bar.
85
+ * **article-header.html**: a sub-header for posts that contains the post title and summary
86
+ * **home-header.html**: a header for the home page, sans nav bar.
87
+ * **footer.html**: the default footer for most pages and posts. Includes a navigation bar.
88
+ * **article-footer.html**: a sub-footer for posts that contains feed and contact links in lieu of a comments section
89
+ * **home-footer.html**: a footer for the home page, sans nav bar.
90
+ * **posts-list.html**: lists all posts as a set of <article> blocks.
91
+ * **recent-posts-list.html**: lists the *n* most recent posts, where the "limit" argument = *n*.
92
+ * **posts-table.html**: lists all posts in a table
93
+ * **recent-posts-table.html**: lists the *n* most recent posts in a table, where the "limit" argument = *n*.
94
+ * **copyright.html**: shows copyright info. used in footers.
95
+ * **license.html**: shows license links for text and code. used in footers.
96
+ * **made-with.html**: can be used to credit tools or represent a location. used in footers.
97
+
98
+ ### Sass
99
+
100
+ Oedipus' stylesheets are built with Sass, which is included with Jekyll.
101
+
102
+ - **assets/style.scss**: wrapper file for the main stylesheet. It contains logic to override Sass variables with custom values from `_config.yml`.
103
+ - **assets/print.scss**: wrapper file for the print stylesheet
104
+ - **_sass/variables.scss**: contains variables with default values
105
+ - **_sass/main.scss**: contains style definitions for the screen
106
+ - **_sass/skip.scss**: implements Sass to hide the [skip navigation](https://webaim.org/techniques/skipnav/) link until tabbed into
107
+ - **_sass/dark.scss**: provides dark mode support.
108
+
109
+ ### Data
110
+
111
+ Oedipus comes with two _data files: `header-nav.yml` and `footer-nav.yml`, which I use to build nav bars. They both contain entries in the following format:
112
+
113
+ ```
114
+ - name: home
115
+ url: /
116
+ desc: front page
117
+ ```
118
+
119
+ ### Assets
120
+
121
+ The only asset Oedipus provides, in addition to the stylesheets, is [favicon.svg](https://raw.githubusercontent.com/matthewgraybosch/jekyll-oedipus-theme/main/assets/favicon.svg). You can and should generate your own. I recommend using [Formito's generator](https://formito.com/tools/favicon). You can also use [favicon.io](https://favicon.io/), but you'll want to modify **base.html** and **home-header.html** since this site doesn't generate SVG.
40
122
 
41
123
  ## Contributing
42
124
 
43
- I built this theme for my own use. If you find this theme useful, you are welcome to it. If you wish to customize it, by all means fork it. However, I will not accept pull requests unless they suit my tastes. Any support I provide is at my own discretion.
125
+ I built this theme for my own use. If you find this theme useful, you are welcome to it. If you wish to customize it, by all means fork it. I will fix bugs and consider pull requests at my own discretion.
44
126
 
45
- The code of conduct is simple: **don't annoy me**.
127
+ ### Code of Conduct
128
+
129
+ This is not a professional project, and I am not interested in collaborating with others here. I am most certainly *not* interested in fostering "community", let alone providing an "open and welcoming environment". Nevertheless, I suppose a rudimentary and informal code of conduct is necessary.
130
+
131
+ 1. If you mess with me, you're banned.
132
+ 2. If you mess with other contributors on this project, you're messing with me.
133
+ 3. When in doubt, refer to rule 1.
134
+
135
+ (with apologies to Matthew Woodring Stover)
46
136
 
47
137
  ## License
48
138
 
49
139
  The theme is available as open source under the terms of the [GNU GPL-3.0](https://opensource.org/licenses/GPL-3.0).
50
140
 
141
+ ### Commercial/Corporate/Government Use
142
+
143
+ I cannot prevent commercial use of this theme, but under no circumstance will I provide free technical support for commercial, corporate, or government projects. Issues and pull requests from people using Oedipus in a commercial, corporate, or government project will be summarily dismissed.
144
+
145
+ Note: I regard inclusion of this theme on a curated site supported by advertising as commercial use. Don't do it and then expect me to provide support to your visitors.
data/_config.yml CHANGED
@@ -19,7 +19,7 @@ plugins:
19
19
  - jekyll-seo-tag
20
20
 
21
21
  sass:
22
- style: expanded
22
+ style: compressed
23
23
 
24
24
  permalink: /blog/:year/:month/:day/:title/
25
25
 
@@ -32,7 +32,7 @@ oedipus:
32
32
  code:
33
33
  name: "GNU GPL-3.0"
34
34
  url: "https://opensource.org/licenses/GPL-3.0/"
35
- madeWith: "♥ in Pennsylvania"
35
+ made-with: "♥ in Pennsylvania"
36
36
  style:
37
37
  bg-color: "#FFFFFF"
38
38
  fg-color: "#000000"
@@ -50,6 +50,6 @@ oedipus:
50
50
  preformatted-font-size: 1rem
51
51
  preformatted-font-family: monospace
52
52
  content-width: 40rem
53
- content-centered: false
54
- compact-header: true
53
+ content-centered: true
54
+ compact-header: false
55
55
  home-header-icon: true
@@ -0,0 +1,9 @@
1
+ <footer>
2
+ <p>
3
+ Thanks for reading.<br />
4
+ The best way to subscribe is with a feed reader:
5
+ <a href="/feed.xml" title="subscribe to the Atom feed">Atom</a>
6
+ <a href="/feed.json" title="subscribe to the JSON feed">JSON</a><br />
7
+ Questions or comments? Email <a href="mailto:{{ site.email }}" title="please allow up to 7 days for a reply">{{ site.email }}</a>.
8
+ </p>
9
+ </footer>
@@ -0,0 +1,4 @@
1
+ <header>
2
+ <h1>{{ page.title }}</h1>
3
+ <p><em>{{ page.description }}</em></p>
4
+ </header>
@@ -0,0 +1,6 @@
1
+ {% if site.oedipus.rights %}
2
+ &copy; {{ site.time | date: "%Y" }} {{ site.author }}, {{ site.oedipus.rights }}
3
+ {% else %}
4
+ &copy; {{ site.time | date: "%Y" }} {{ site.author }}
5
+ {% endif %}
6
+ <br />
@@ -1,8 +1,8 @@
1
1
  <footer>
2
2
  <p>
3
- &copy; {{ site.time | date: "%Y" }} {{ site.author }}, {{ site.oedipus.rights }}<br />
3
+ {% include copyright.html %}
4
4
  {% include license.html %}
5
- made with {{ site.oedipus.madeWith }}
5
+ {% include made-with.html %}
6
6
  </p>
7
7
  {% include navbar.html id="footer-nav" label="bottom navigation" source=site.data.footer-nav %}
8
8
  </footer>
@@ -1,7 +1,7 @@
1
1
  <footer>
2
2
  <p>
3
- &copy; {{ site.time | date: "%Y" }} {{ site.author }}, {{ site.oedipus.rights }}<br />
3
+ {% include copyright.html %}
4
4
  {% include license.html %}
5
- made with {{ site.oedipus.madeWith }}
5
+ {% include made-with.html %}
6
6
  </p>
7
7
  </footer>
@@ -0,0 +1,3 @@
1
+ {% if site.oedipus.made-with %}
2
+ made with {{ site.oedipus.made-with }}
3
+ {% endif %}
@@ -1,5 +1,5 @@
1
1
  {% if include.source %}
2
- <nav id="{{ include.id }}" aria-label=" {{include.label }}">
2
+ <section id="{{ include.id }}" aria-label=" {{include.label }}">
3
3
  <ul>
4
4
  {% for item in include.source %}
5
5
  <li>
@@ -7,5 +7,5 @@
7
7
  </li>
8
8
  {% endfor %}
9
9
  </ul>
10
- </nav>
10
+ </section>
11
11
  {% endif %}
@@ -1,7 +1,9 @@
1
- {% for post in site.posts %}
2
- <article>
3
- <h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
4
- <p><em>{{ post.description }}</em></p>
5
- <p>posted on {{ post.date | date: "%Y-%m-%d" }}</p>
6
- </article>
7
- {% endfor %}
1
+ <dl>
2
+ {% for post in site.posts %}
3
+ <dt>
4
+ [{{ post.date | date: "%Y-%m-%d" }}]
5
+ <a href="{{ post.url }}">{{ post.title }}</a>
6
+ </dt>
7
+ <dd>{{ post.description }}</dd>
8
+ {% endfor %}
9
+ </dl>
@@ -1,7 +1,9 @@
1
- {% for post in site.posts | limit: include.limit %}
2
- <article>
3
- <h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
4
- <p><em>{{ post.description }}</em></p>
5
- <p>posted on {{ post.date | date: "%Y-%m-%d" }}</p>
6
- </article>
7
- {% endfor %}
1
+ <dl>
2
+ {% for post in site.posts | limit: include.limit %}
3
+ <dt>
4
+ [{{ post.date | date: "%Y-%m-%d" }}]
5
+ <a href="{{ post.url }}">{{ post.title }}</a>
6
+ </dt>
7
+ <dd>{{ post.description }}</dd>
8
+ {% endfor %}
9
+ </dl>
data/_layouts/base.html CHANGED
@@ -4,7 +4,7 @@
4
4
  <meta charset="{{ site.encoding }}">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
6
  <link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" />
7
- <link rel="icon" type="image/ico" href="/assets/favicon.ico" />
7
+ <link rel="icon" href="data:,">
8
8
  <link rel="stylesheet" type="text/css" href="/assets/style.css" />
9
9
  <link rel="alternate" type="application/atom+xml" href="/feed.xml" title="{{ site.title }} Atom Feed">
10
10
  <link rel="alternate" type="text/json" href="/feed.json" title="{{ site.title }} JSON Feed">
data/_layouts/post.html CHANGED
@@ -3,19 +3,9 @@ layout: default
3
3
  ---
4
4
 
5
5
  <article id="content">
6
- <header>
7
- <h1>{{ page.title }}</h1>
8
- <p><em>{{ page.description }}</em></p>
9
- </header>
6
+ {% include article-header.html %}
10
7
  <section>
11
8
  {{ content }}
12
9
  </section>
13
- <footer>
14
- <p>
15
- Thanks for reading.<br />
16
- The best way to subscribe is with a feed reader:
17
- <a href="/feed.xml" title="subscribe to the Atom feed">Atom</a>
18
- <a href="/feed.json" title="subscribe to the JSON feed">JSON</a><br />
19
- Questions or comments? Email <a href="mailto:{{ site.email }}" title="please allow up to 7 days for a reply">{{ site.email }}</a>.</p>
20
- </footer>
10
+ {% include article-footer.html %}
21
11
  </article>
data/_sass/dark.scss CHANGED
@@ -7,6 +7,14 @@
7
7
  background: invert($bg-color);
8
8
  color: invert($fg-color);
9
9
 
10
+ header {
11
+ border-bottom: $border-thickness solid invert($fg-color);
12
+ }
13
+
14
+ footer {
15
+ border-top: $border-thickness solid invert($fg-color);
16
+ }
17
+
10
18
  a {
11
19
  color: invert($link-color);
12
20
  }
@@ -36,8 +44,8 @@
36
44
  }
37
45
 
38
46
  article {
39
- hr {
40
- border: $hr-border-thickness dashed invert($fg-color);
47
+ footer {
48
+ border-top: $hr-border-thickness dashed invert($fg-color);
41
49
  }
42
50
  }
43
51
 
data/_sass/main.scss CHANGED
@@ -13,7 +13,11 @@ html {
13
13
 
14
14
  a {
15
15
  color: $link-color;
16
- text-underline-offset: $border-thickness * 1.5;
16
+ text-underline-offset: $underline-offset;
17
+ }
18
+
19
+ abbr {
20
+ text-underline-offset: $underline-offset;
17
21
  }
18
22
 
19
23
  a:hover {
@@ -33,14 +37,14 @@ html {
33
37
  }
34
38
 
35
39
  header, footer, nav {
36
- text-align: content-alignment;
40
+ text-align: $content-alignment;
37
41
 
38
42
  h1 {
39
- font-size: 1rem;
43
+ font-size: $content-font-size;
40
44
  margin-bottom: 1rem;
41
45
 
42
46
  em {
43
- margin-left: 1rem;
47
+ margin-left: .5rem;
44
48
  font-weight: normal;
45
49
  }
46
50
  }
@@ -60,30 +64,33 @@ html {
60
64
 
61
65
  nav {
62
66
  margin-top: 1.5rem;
63
- p {
64
- a {
65
- margin-right: 1rem;
66
- border: $border-thickness solid $link-color;
67
- border-radius: .5rem;
68
- padding: .5rem;
69
- text-decoration: none;
70
- }
67
+ a {
68
+ margin: .5rem;
69
+ border: $border-thickness solid $link-color;
70
+ border-radius: .5rem;
71
+ padding: .5rem;
72
+ text-decoration: none;
73
+ display: inline-block;
74
+ }
71
75
 
72
- a:last-child {
73
- margin-right: 0;
74
- }
76
+ a:first-child {
77
+ margin-left: 0;
78
+ }
75
79
 
76
- a:hover {
77
- border: $border-thickness solid $link-hover-color;
78
- }
79
-
80
- a:active {
81
- border: $border-thickness solid $link-active-color;
82
- }
83
-
84
- a:visited {
85
- border: $border-thickness solid $link-visited-color;
86
- }
80
+ a:last-child {
81
+ margin-right: 0;
82
+ }
83
+
84
+ a:hover {
85
+ border: $border-thickness solid $link-hover-color;
86
+ }
87
+
88
+ a:active {
89
+ border: $border-thickness solid $link-active-color;
90
+ }
91
+
92
+ a:visited {
93
+ border: $border-thickness solid $link-visited-color;
87
94
  }
88
95
  }
89
96
 
@@ -128,19 +135,19 @@ html {
128
135
 
129
136
  main, article {
130
137
  h1 {
131
- font-size: 1.6rem;
138
+ font-size: $content-font-size * 2;
132
139
  }
133
140
 
134
141
  h2 {
135
- font-size: 1.4rem;
142
+ font-size: $content-font-size * 1.6;
136
143
  }
137
144
 
138
145
  h3 {
139
- font-size: 1.2rem;
146
+ font-size: $content-font-size * 1.2;
140
147
  }
141
148
 
142
149
  h4, h5, h6 {
143
- font-size: 1.1rem;
150
+ font-size: $content-font-size * 1.1;
144
151
  }
145
152
  }
146
153
 
data/_sass/variables.scss CHANGED
@@ -19,3 +19,4 @@ $content-margin: 2rem auto;
19
19
  $content-padding: 0 .62rem;
20
20
  $blockquote-font-size: 1.1rem;
21
21
  $figure-font-size: 1.1rem;
22
+ $underline-offset: 5px;
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-oedipus-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Graybosch
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-29 00:00:00.000000000 Z
11
+ date: 2021-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: webrick
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: jekyll
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -92,7 +106,7 @@ dependencies:
92
106
  - - ">="
93
107
  - !ruby/object:Gem::Version
94
108
  version: 2.7.1
95
- description:
109
+ description:
96
110
  email:
97
111
  - contact@matthewgraybosch.com
98
112
  executables: []
@@ -102,11 +116,15 @@ files:
102
116
  - LICENSE.txt
103
117
  - README.md
104
118
  - _config.yml
119
+ - _includes/article-footer.html
120
+ - _includes/article-header.html
121
+ - _includes/copyright.html
105
122
  - _includes/footer.html
106
123
  - _includes/header.html
107
124
  - _includes/home-footer.html
108
125
  - _includes/home-header.html
109
126
  - _includes/license.html
127
+ - _includes/made-with.html
110
128
  - _includes/masthead.html
111
129
  - _includes/navbar.html
112
130
  - _includes/navlist.html
@@ -125,7 +143,6 @@ files:
125
143
  - _sass/paper.scss
126
144
  - _sass/skip.scss
127
145
  - _sass/variables.scss
128
- - assets/favicon.ico
129
146
  - assets/favicon.svg
130
147
  - assets/print.scss
131
148
  - assets/style.scss
@@ -133,7 +150,7 @@ homepage: https://github.com/matthewgraybosch/jekyll-oedipus-theme
133
150
  licenses:
134
151
  - GPL-3.0
135
152
  metadata: {}
136
- post_install_message:
153
+ post_install_message:
137
154
  rdoc_options: []
138
155
  require_paths:
139
156
  - lib
@@ -141,15 +158,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
141
158
  requirements:
142
159
  - - ">="
143
160
  - !ruby/object:Gem::Version
144
- version: '2.7'
161
+ version: '3.0'
145
162
  required_rubygems_version: !ruby/object:Gem::Requirement
146
163
  requirements:
147
164
  - - ">="
148
165
  - !ruby/object:Gem::Version
149
166
  version: '0'
150
167
  requirements: []
151
- rubygems_version: 3.2.5
152
- signing_key:
168
+ rubygems_version: 3.2.22
169
+ signing_key:
153
170
  specification_version: 4
154
171
  summary: Build a motherfucking website with Jekyll (patricide optional)
155
172
  test_files: []
data/assets/favicon.ico DELETED
Binary file