no-sommer-style-please 0.4.8
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.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +123 -0
- data/_config.yml +27 -0
- data/_includes/back_link.html +1 -0
- data/_includes/goat_counter.html +6 -0
- data/_includes/head.html +19 -0
- data/_includes/menu_item.html +26 -0
- data/_includes/post_list.html +25 -0
- data/_layouts/archive.html +9 -0
- data/_layouts/default.html +21 -0
- data/_layouts/home.html +13 -0
- data/_layouts/page.html +9 -0
- data/_layouts/post.html +15 -0
- data/_sass/no-style-please.scss +94 -0
- data/assets/css/main.scss +4 -0
- data/assets/js/mouse_coords.js +9 -0
- metadata +101 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 26b07c48f8dd3b32aed45e5d02bffbfd9e9762ded3fd12906d865c212835fb6a
|
4
|
+
data.tar.gz: c309c861cf2a1b562c13b270fc787ebad74a0d1267c2813d670dc7dacfe33547
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: afc69704fc28435c712f8260df6e7d16f11bba498717789e7850d7f171840105060c51c569567707e59d9b7bd997675201bf97be22a9b7f70eeaee6f65a43c91
|
7
|
+
data.tar.gz: 8e7371af4eb3e168dfec31ca9f272d4ca8d13498bfff942f38be38b229c323e10108bd35138568d4551a068975228352108479d36623d7a87ac6fd88aaeaef73
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Riccardo Graziosi
|
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,123 @@
|
|
1
|
+
# no style, please!
|
2
|
+
|
3
|
+
<img src="https://raw.githubusercontent.com/riggraz/no-style-please/master/logo.png" width="64" align="left" />A (nearly) no-CSS, fast, minimalist [Jekyll](https://jekyllrb.com/) theme.
|
4
|
+
Inspired by [elly's site](http://tilde.town/~elly/), expressly created for [my personal blog](https://riggraz.dev/).
|
5
|
+
|
6
|
+
<h3 align="center"><a href="https://riggraz.dev/no-style-please/">Try the demo out!</a></h3>
|
7
|
+
|
8
|
+
<img src="https://raw.githubusercontent.com/riggraz/no-style-please/master/_screenshots/featured-image.png" />
|
9
|
+
|
10
|
+
## Features
|
11
|
+
|
12
|
+
* Fast (**1kb of CSS!** For more information on performance and more, see [Page Speed Insights report](https://raw.githubusercontent.com/riggraz/no-style-please/master/_screenshots/page-speed-insights-report.png) and [Lighthouse report](https://raw.githubusercontent.com/riggraz/no-style-please/master/_screenshots/lighthouse-report.png))
|
13
|
+
* Light, dark and auto modes
|
14
|
+
* Responsive
|
15
|
+
* Content first (typography optimized for maximum readability)
|
16
|
+
* SEO optimized (uses [Jekyll SEO Tag](https://github.com/jekyll/jekyll-seo-tag))
|
17
|
+
* RSS feed (uses [Jekyll Feed](https://github.com/jekyll/jekyll-feed))
|
18
|
+
* Fully compatible with [GitHub Pages](https://pages.github.com/) (see [GitHub Pages installation](#github-pages-installation))
|
19
|
+
|
20
|
+
## Installation
|
21
|
+
|
22
|
+
If you haven't already created your blog using Jekyll, follow the [instructions](https://jekyllrb.com/docs/) to do so from Jekyll's documentation.
|
23
|
+
|
24
|
+
NOTE: if you are using Jekyll with GitHub Pages, see the [GitHub Pages installation section](#github-pages-installation).
|
25
|
+
|
26
|
+
Then, to style your blog with this theme, add this line to your Jekyll site's `Gemfile`:
|
27
|
+
|
28
|
+
```ruby
|
29
|
+
gem "no-style-please"
|
30
|
+
```
|
31
|
+
|
32
|
+
And add this line to your Jekyll site's `_config.yml`:
|
33
|
+
|
34
|
+
```yaml
|
35
|
+
theme: no-style-please
|
36
|
+
```
|
37
|
+
|
38
|
+
And then execute:
|
39
|
+
|
40
|
+
$ bundle
|
41
|
+
|
42
|
+
Or install it yourself as:
|
43
|
+
|
44
|
+
$ gem install no-style-please
|
45
|
+
|
46
|
+
### GitHub Pages installation
|
47
|
+
|
48
|
+
If you want to use this theme for your Jekyll's site deployed on [GitHub Pages](https://pages.github.com/), follow the instructions on [this page](https://docs.github.com/en/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll#adding-a-theme).
|
49
|
+
|
50
|
+
## Usage
|
51
|
+
|
52
|
+
You can edit `_config.yml` file to customize your blog. You can change things such as the name of the blog, the author, the appearance of the theme (light, dark or auto), how dates are formatted, etc. Customizable fields should be straightforward to understand. Still, `_config.yml` contains some comments to help you understand what each field does.
|
53
|
+
|
54
|
+
For further customization (e.g. layout, CSS) see the [official Jekyll's documentation](https://jekyllrb.com/docs/themes/#overriding-theme-defaults) on customizing gem-based themes.
|
55
|
+
|
56
|
+
### Customize the menu
|
57
|
+
|
58
|
+
In order to add/edit/delete entries from the main menu, you have to edit the `menu.yml` file inside `_data` folder. Through that file you can define the structure of the menu. Take a look at the default configuration to get an idea of how it works and read on for a more comprehensive explanation.
|
59
|
+
|
60
|
+
The `menu.yml` file accepts the following fields:
|
61
|
+
|
62
|
+
- `entries` define a new unordered list that will contain menu entries
|
63
|
+
- each entry is marked by a `-` at the beginning of the line
|
64
|
+
- each entry can have the following attributes:
|
65
|
+
- `title`, which defines the text to render for this menu entry (**NB: you can also specify HTML!**)
|
66
|
+
- `url`, which can be used to specify an URL for this entry. If not specified, `title` will be rendered as-is; otherwise `title` will be sorrounded by a link tag pointing to the specified URL. Note that the URL can either be relative or absolute. Also note that you can get the same result by placing an ```<a>``` tag in the `title` field.
|
67
|
+
- `post_list`, which can be set either to `true` or to an object. If it is true, the entry will have a list of all posts as subentries. This is used to render your post list. If you want to customize which posts to render (e.g. by category), you can add one or more of the following attributes under `post_list`:
|
68
|
+
- `category`, which can be set to a string. It is used to render a list of posts of the specified category only. If you don't set it, then posts of all categories will be rendered.
|
69
|
+
- `limit`, which can be set to a number. It specifies the number of posts to show. If not set, all posts will be rendered.
|
70
|
+
- `show_more`, which can be true. If it is true and if the number of posts to show is greater than the specified `limit`, render a link to another page. To specify the URL and the text of the link, you can set `show_more_url` and `show_more_text` attributes, which are documented below.
|
71
|
+
- `show_more_url`, which can be a string. It specifies the URL for the show more link. Use only if `show_more` is true. This will usually redirect to a page containing all posts, which you can easily create using an archive page (see [create archive pages](#create-archive-pages) section)
|
72
|
+
- `show_more_text`, which can be a string. It specifies the text for the show more link. Use only if `show_more` is true.
|
73
|
+
- `entries`, yes, you can have entries inside entries. In this way you can create nested sublists!
|
74
|
+
|
75
|
+
### Create archive pages
|
76
|
+
|
77
|
+
A so-called archive page is a page that shows a list of posts (see [this](https://riggraz.dev/no-style-please/all-posts) for an example). You can create an archive page by creating a page and putting the following frontmatter:
|
78
|
+
|
79
|
+
```
|
80
|
+
---
|
81
|
+
layout: archive
|
82
|
+
title: The title of the page here
|
83
|
+
which_category: name-of-category
|
84
|
+
---
|
85
|
+
```
|
86
|
+
|
87
|
+
`which_category` is optional: if you don't put it, then all posts of the blog will be listed; on the other hand, if you specify a category, only posts of that category will be shown.
|
88
|
+
|
89
|
+
This feature is particularly useful if used together with the `show_more` attribute in the menu. For example, if you want to limit the number of posts shown in the home page to 5 but add a link to view them all, then you can create an archive page using the method showed above and link to it using the `show_more_url` attribute in `menu.yml`. See [this example](https://github.com/riggraz/no-style-please/blob/master/_data/menu.yml) if you're in doubt.
|
90
|
+
|
91
|
+
### Customize the index page
|
92
|
+
|
93
|
+
The `index.md` page should use layout `home`, which is the layout that displays the menu. If you want to have some content after the menu, you can just add that content in the `index.md` file, and it will automatically show under the menu.
|
94
|
+
|
95
|
+
Another thing you can do to customize the index page is show the description of your blog between the title and the menu. To do this, just edit `_config.yml` and change `theme_config.show_description` to `true`.
|
96
|
+
|
97
|
+
### Pro tips
|
98
|
+
|
99
|
+
#### Dark mode for images
|
100
|
+
|
101
|
+
This theme provides dark mode by inverting all colors of light mode throught the CSS `invert()` function. This approach would also invert the color of all images, but, since this is not the behaviour one would expect, images are not inverted by default.
|
102
|
+
|
103
|
+
However, if you would like to force the color inversion on a specific image you can do so by applying `class="ioda"` to that image ("ioda" stands for "invert on dark appearance"). See the image in the [overview post](https://github.com/riggraz/no-style-please/blob/master/_posts/2020-07-07-overview-post.md) for an example of this approach. Note that color inversion will take place only when the theme has dark appearance!
|
104
|
+
|
105
|
+
For example, if you have a black and white image it could make sense to invert it in dark mode. On the other hand, a colorful image will probably look bad if inverted.
|
106
|
+
|
107
|
+
## Contributing
|
108
|
+
|
109
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/riggraz/no-style-please. 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.
|
110
|
+
|
111
|
+
## Development
|
112
|
+
|
113
|
+
To set up your environment to develop this theme, run `bundle install`.
|
114
|
+
|
115
|
+
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.
|
116
|
+
|
117
|
+
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
118
|
+
To add a custom directory to your theme-gem, please edit the regexp in `no-style-please.gemspec` accordingly.
|
119
|
+
|
120
|
+
## License
|
121
|
+
|
122
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
123
|
+
|
data/_config.yml
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
title: no style, please! # name of the site
|
2
|
+
author: Riccardo Graziosi # name of site's author
|
3
|
+
email: riccardo.graziosi97@gmail.com # email of site's author
|
4
|
+
url: https://riggraz.dev # root address of the site
|
5
|
+
baseurl: "/no-style-please" # subpath of the site, e.g. "/blog" (leave it blank "" if you're site shouldn't use a subpath)
|
6
|
+
description: > # description of the site (multiple lines allowed)
|
7
|
+
A (nearly) no-CSS, fast, minimalist Jekyll theme.
|
8
|
+
|
9
|
+
permalink: /:slug.html
|
10
|
+
|
11
|
+
favicon: "logo.png" # name+extension of favicon (which must be put on the root folder)
|
12
|
+
# goat_counter: "yoursitename" # put your GoatCounter name if you want to use GoatCounter analytics
|
13
|
+
|
14
|
+
theme: no-style-please # if you are using GitHub Pages, change it to remote_theme: riggraz/no-style-please
|
15
|
+
|
16
|
+
theme_config:
|
17
|
+
appearance: "auto" # can be "light", "dark" or "auto"
|
18
|
+
back_home_text: ".." # customize text for homepage link in post layout
|
19
|
+
date_format: "%Y-%m-%d" # customize how date is formatted
|
20
|
+
show_description: false # show blog description in home page
|
21
|
+
|
22
|
+
sass:
|
23
|
+
style: :compressed
|
24
|
+
|
25
|
+
plugins:
|
26
|
+
- jekyll-feed
|
27
|
+
- jekyll-seo-tag
|
@@ -0,0 +1 @@
|
|
1
|
+
<a href="{{ "/" | relative_url }}">{{ site.theme_config.back_home_text }}</a>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,19 @@
|
|
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
|
+
|
6
|
+
<title>
|
7
|
+
{%- if page.title -%}
|
8
|
+
{{ page.title }}
|
9
|
+
{%- else -%}
|
10
|
+
{{ site.title }}
|
11
|
+
{%- endif -%}
|
12
|
+
</title>
|
13
|
+
|
14
|
+
{%-seo title=false-%}
|
15
|
+
{%-feed_meta-%}
|
16
|
+
|
17
|
+
<link rel="shortcut icon" type="image/x-icon" href="{{ site.favicon | relative_url }}" />
|
18
|
+
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}" />
|
19
|
+
</head>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<ul>
|
2
|
+
{%-for item in include.collection-%}
|
3
|
+
<li>
|
4
|
+
{%- if item.url -%}
|
5
|
+
<a href="{{ item.url }}">{{ item.title }}</a>
|
6
|
+
{%- else -%}
|
7
|
+
{{ item.title }}
|
8
|
+
{%- endif -%}
|
9
|
+
</li>
|
10
|
+
|
11
|
+
{%-if item.post_list-%}
|
12
|
+
{%
|
13
|
+
include post_list.html
|
14
|
+
category=item.post_list.category
|
15
|
+
limit=item.post_list.limit
|
16
|
+
show_more=item.post_list.show_more
|
17
|
+
show_more_text=item.post_list.show_more_text
|
18
|
+
show_more_url=item.post_list.show_more_url
|
19
|
+
-%}
|
20
|
+
{%-endif-%}
|
21
|
+
|
22
|
+
{%-if item.entries-%}
|
23
|
+
{%-include menu_item.html collection=item.entries-%}
|
24
|
+
{%-endif-%}
|
25
|
+
{%-endfor-%}
|
26
|
+
</ul>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{%-if include.category-%}
|
2
|
+
{%-assign posts = site.categories[include.category]-%}
|
3
|
+
{%-else-%}
|
4
|
+
{%-assign posts = site.posts-%}
|
5
|
+
{%-endif-%}
|
6
|
+
|
7
|
+
{%-if include.limit and posts.size > include.limit-%}
|
8
|
+
{%-assign limit_exceeded = true-%}
|
9
|
+
{%-else-%}
|
10
|
+
{%-assign limit_exceeded = false-%}
|
11
|
+
{%-endif-%}
|
12
|
+
|
13
|
+
{%- if posts.size > 0 -%}
|
14
|
+
<ul>
|
15
|
+
{%- for post in posts limit: include.limit -%}
|
16
|
+
<li>
|
17
|
+
<span>{{- post.date | date: site.theme_config.date_format -}}</span>
|
18
|
+
<a href="{{ post.url | relative_url }}">{{ post.title | downcase }}</a>
|
19
|
+
</li>
|
20
|
+
{%- endfor -%}
|
21
|
+
{%- if include.show_more and limit_exceeded -%}
|
22
|
+
<li><a href="{{ include.show_more_url }}">{{ include.show_more_text | default: "Show more..." }}</a></li>
|
23
|
+
{%- endif -%}
|
24
|
+
</ul>
|
25
|
+
{%- endif -%}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ page.lang | default: "en" }}">
|
3
|
+
{%- include head.html -%}
|
4
|
+
<body a="{{ site.theme_config.appearance | default: "auto" }}">
|
5
|
+
<main class="page-content" aria-label="Content">
|
6
|
+
<div class="w">
|
7
|
+
{{ content }}
|
8
|
+
</div>
|
9
|
+
</main>
|
10
|
+
|
11
|
+
{%-if site.goat_counter and jekyll.environment == "production"-%}
|
12
|
+
{%-include goat_counter.html-%}
|
13
|
+
{%-endif-%}
|
14
|
+
|
15
|
+
{% if page.custom_js %}
|
16
|
+
{% for js_file in page.custom_js %}
|
17
|
+
<script type="text/javascript" src="{{ site.baseurl }}/assets/js/{{ js_file }}.js"></script>
|
18
|
+
{% endfor %}
|
19
|
+
{% endif %}
|
20
|
+
</body>
|
21
|
+
</html>
|
data/_layouts/home.html
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
<header>
|
5
|
+
<h1>{{ site.title }}</h1>
|
6
|
+
{%-if site.theme_config.show_description-%}
|
7
|
+
<p>{{ site.description }}</p>
|
8
|
+
{%-endif-%}
|
9
|
+
</header>
|
10
|
+
|
11
|
+
{%-include menu_item.html collection=site.data.menu.entries-%}
|
12
|
+
|
13
|
+
{{ content }}
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
{%-include back_link.html-%}
|
6
|
+
|
7
|
+
<article>
|
8
|
+
<p class="post-meta">
|
9
|
+
<time datetime="{{ page.date }}">{{ page.date | date: site.theme_config.date_format }}</time>
|
10
|
+
</p>
|
11
|
+
|
12
|
+
<h1>{{ page.title }}</h1>
|
13
|
+
|
14
|
+
{{ content }}
|
15
|
+
</article>
|
@@ -0,0 +1,94 @@
|
|
1
|
+
// -------------- THEME SWITCHER -------------- //
|
2
|
+
@mixin dark-appearance {
|
3
|
+
filter: invert(1);
|
4
|
+
img {
|
5
|
+
filter: invert(1);
|
6
|
+
|
7
|
+
&.ioda { filter: invert(0); }
|
8
|
+
}
|
9
|
+
}
|
10
|
+
|
11
|
+
body[a="dark"] { @include dark-appearance; }
|
12
|
+
|
13
|
+
|
14
|
+
@media (prefers-color-scheme: dark) {
|
15
|
+
body[a="auto"] { @include dark-appearance; }
|
16
|
+
}
|
17
|
+
// -------------------------------------------- //
|
18
|
+
|
19
|
+
// bg color is also needed in html in order to
|
20
|
+
// block body's background propagation
|
21
|
+
// see: https://stackoverflow.com/a/61265706
|
22
|
+
html, body { background: white; }
|
23
|
+
|
24
|
+
html { height: 100%; }
|
25
|
+
|
26
|
+
body {
|
27
|
+
color: black;
|
28
|
+
font-family: monospace;
|
29
|
+
font-size: 16px;
|
30
|
+
line-height: 1.4;
|
31
|
+
margin: 0;
|
32
|
+
min-height: 100%;
|
33
|
+
overflow-wrap: break-word;
|
34
|
+
}
|
35
|
+
|
36
|
+
.post-meta { text-align: right; }
|
37
|
+
|
38
|
+
h2, h3, h4, h5, h6 { margin-top: 3rem; }
|
39
|
+
|
40
|
+
hr { margin: 2rem 0; }
|
41
|
+
|
42
|
+
p { margin: 1rem 0; }
|
43
|
+
|
44
|
+
li { margin: 0.4rem 0; }
|
45
|
+
|
46
|
+
*:target { background: yellow; }
|
47
|
+
|
48
|
+
.w {
|
49
|
+
max-width: 640px;
|
50
|
+
margin: 0 auto;
|
51
|
+
padding: 4rem 2rem;
|
52
|
+
}
|
53
|
+
|
54
|
+
hr {
|
55
|
+
text-align: center;
|
56
|
+
border: 0;
|
57
|
+
|
58
|
+
&:before { content: '/////' }
|
59
|
+
&:after { content: attr(data-content) '/////' }
|
60
|
+
}
|
61
|
+
|
62
|
+
table { width: 100%; }
|
63
|
+
|
64
|
+
table, th, td {
|
65
|
+
border: thin solid black;
|
66
|
+
border-collapse: collapse;
|
67
|
+
padding: 0.4rem;
|
68
|
+
}
|
69
|
+
|
70
|
+
code {
|
71
|
+
color: white;
|
72
|
+
background: black;
|
73
|
+
}
|
74
|
+
|
75
|
+
div.highlighter-rouge code {
|
76
|
+
display: block;
|
77
|
+
overflow-x: auto;
|
78
|
+
white-space: pre-wrap;
|
79
|
+
padding: 1rem;
|
80
|
+
}
|
81
|
+
|
82
|
+
blockquote {
|
83
|
+
font-style: italic;
|
84
|
+
border: thin solid black;
|
85
|
+
padding: 1rem;
|
86
|
+
|
87
|
+
p { margin: 0; }
|
88
|
+
}
|
89
|
+
|
90
|
+
img {
|
91
|
+
max-width: 100%;
|
92
|
+
display: block;
|
93
|
+
margin: 0 auto;
|
94
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
const p = document.createElement("p");
|
2
|
+
p.style.textAlign = "center";
|
3
|
+
p.style.fontSize = "18pt";
|
4
|
+
p.innerHTML = "C'mon, move your mouse!"
|
5
|
+
document.body.append(p);
|
6
|
+
|
7
|
+
document.addEventListener("mousemove", e => {
|
8
|
+
p.innerHTML = `mouseX: ${e.clientX}, mouseY: ${e.clientY}`;
|
9
|
+
});
|
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: no-sommer-style-please
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.4.8
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Espen Sommer Eide
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-06-06 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.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.3
|
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.15.1
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.15.1
|
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.7.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.7.1
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- espensommer@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE.txt
|
63
|
+
- README.md
|
64
|
+
- _config.yml
|
65
|
+
- _includes/back_link.html
|
66
|
+
- _includes/goat_counter.html
|
67
|
+
- _includes/head.html
|
68
|
+
- _includes/menu_item.html
|
69
|
+
- _includes/post_list.html
|
70
|
+
- _layouts/archive.html
|
71
|
+
- _layouts/default.html
|
72
|
+
- _layouts/home.html
|
73
|
+
- _layouts/page.html
|
74
|
+
- _layouts/post.html
|
75
|
+
- _sass/no-style-please.scss
|
76
|
+
- assets/css/main.scss
|
77
|
+
- assets/js/mouse_coords.js
|
78
|
+
homepage: https://github.com/materialvision/no-sommer-style-please
|
79
|
+
licenses:
|
80
|
+
- MIT
|
81
|
+
metadata: {}
|
82
|
+
post_install_message:
|
83
|
+
rdoc_options: []
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubygems_version: 3.5.11
|
98
|
+
signing_key:
|
99
|
+
specification_version: 4
|
100
|
+
summary: A (nearly) no-CSS, fast, minimalist Jekyll theme.
|
101
|
+
test_files: []
|