jekyll-theme-classless-simple 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +69 -0
- data/_config.yml +14 -0
- data/_includes/custom-head.html +6 -0
- data/_includes/footer.html +5 -0
- data/_includes/google-analytics.html +9 -0
- data/_includes/head.html +13 -0
- data/_includes/header.html +13 -0
- data/_layouts/default.html +15 -0
- data/_layouts/home.html +58 -0
- data/_layouts/page.html +9 -0
- data/_layouts/post.html +9 -0
- data/_sass/classless-simple/initialize.sass +9 -0
- data/_sass/classless-simple/skins/classic.scss +0 -0
- data/_sass/classless-simple/syntax/default.scss +67 -0
- data/_sass/classless-simple/syntax/monokai.scss +224 -0
- data/assets/css/style.scss +8 -0
- metadata +117 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ea029ac6416ff8fe4984b5555ad75ef5ffa3245b868f431475fd65b5009aee00
|
4
|
+
data.tar.gz: '0431397b406669bfee9126061ae7ca800d699216a7b4908d56506157adcdb58e'
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 97f32c93790eea5e35c8cd32b70118fe61bb58412e7a14a54f6b2d3b8e37e76e1a0c4b1dbf345c58e52ed7cf292a42088af4c14f23836a14efb82a300fbe2c71
|
7
|
+
data.tar.gz: 3820a39bdef0beda97dcad748dbd953bd3e23c28b793e4b35016c029b132264313bb08f05daa00a1f8656657bb5d7697d884b247ad39b380494675be101c2826
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2021-2022 toshimaru
|
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,69 @@
|
|
1
|
+
[![Test](https://github.com/toshimaru/jekyll-theme-classless-simple/actions/workflows/ci.yaml/badge.svg)](https://github.com/toshimaru/jekyll-theme-classless-simple/actions/workflows/ci.yaml)
|
2
|
+
|
3
|
+
# jekyll-theme-classless-simple
|
4
|
+
|
5
|
+
jekyll-theme-classless-simple is a Jekyll theme styled with [Simple.css](https://github.com/kevquirk/simple.css), a classless CSS framework.
|
6
|
+
|
7
|
+
[![Demo site](https://user-images.githubusercontent.com/803398/166136399-ae70d28a-cf4c-446c-ba19-06ed91c44884.png)](https://jekyll-classless-simple.toshimaru.net/)
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your Jekyll site's `Gemfile`:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem "jekyll-theme-classless-simple"
|
15
|
+
```
|
16
|
+
|
17
|
+
And add this line to your Jekyll site's `_config.yml`:
|
18
|
+
|
19
|
+
```yaml
|
20
|
+
theme: jekyll-theme-classless-simple
|
21
|
+
```
|
22
|
+
|
23
|
+
And then execute:
|
24
|
+
|
25
|
+
```console
|
26
|
+
$ bundle
|
27
|
+
```
|
28
|
+
|
29
|
+
## Usage
|
30
|
+
|
31
|
+
```yml
|
32
|
+
# Specify theme
|
33
|
+
theme: jekyll-theme-classless-simple
|
34
|
+
|
35
|
+
classless-simple:
|
36
|
+
syntax: monokai # syntax highlight theme
|
37
|
+
|
38
|
+
# Set to enable Google Analytics
|
39
|
+
google_analytics: UA-XXX
|
40
|
+
|
41
|
+
# Navigation links in header
|
42
|
+
header_pages:
|
43
|
+
- about.md
|
44
|
+
- view-on-github.md
|
45
|
+
```
|
46
|
+
|
47
|
+
## Plugins
|
48
|
+
|
49
|
+
This theme depends on:
|
50
|
+
|
51
|
+
- jekyll-seo-tag
|
52
|
+
- jekyll-feed
|
53
|
+
|
54
|
+
## Contributing
|
55
|
+
|
56
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/toshimaru/jekyll-theme-classless-simple. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
|
57
|
+
|
58
|
+
## Development
|
59
|
+
|
60
|
+
To set up your environment to develop this theme, run `bundle install`.
|
61
|
+
|
62
|
+
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.
|
63
|
+
|
64
|
+
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
65
|
+
To add a custom directory to your theme-gem, please edit the regexp in `jekyll-theme-classless-simple.gemspec` accordingly.
|
66
|
+
|
67
|
+
## License
|
68
|
+
|
69
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/_config.yml
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
title: Your awesome title
|
2
|
+
author:
|
3
|
+
name: GitHub User
|
4
|
+
email: your-email@domain.com
|
5
|
+
description: >
|
6
|
+
Write an awesome description for your new site here. You can edit this
|
7
|
+
line in _config.yml. It will appear in your document head meta (for
|
8
|
+
Google search results) and in your feed.xml site description.
|
9
|
+
theme: jekyll-theme-classless-simple
|
10
|
+
header_pages:
|
11
|
+
- about.md
|
12
|
+
- view-on-github.md
|
13
|
+
plugins:
|
14
|
+
- jekyll-redirect-from
|
@@ -0,0 +1,6 @@
|
|
1
|
+
{% comment %}
|
2
|
+
Placeholder to allow defining custom head, in principle, you can add anything here, e.g. favicons:
|
3
|
+
|
4
|
+
1. Head over to https://realfavicongenerator.net/ to add your own favicons.
|
5
|
+
2. Customize default _includes/custom-head.html in your source directory and insert the given code snippet.
|
6
|
+
{% endcomment %}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
|
2
|
+
<script>
|
3
|
+
window['ga-disable-{{ site.google_analytics }}'] = window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1";
|
4
|
+
window.dataLayer = window.dataLayer || [];
|
5
|
+
function gtag() { window.dataLayer.push(arguments); }
|
6
|
+
gtag('js', new Date());
|
7
|
+
|
8
|
+
gtag('config', '{{ site.google_analytics }}');
|
9
|
+
</script>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
<head>
|
2
|
+
<meta charset="utf-8">
|
3
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
4
|
+
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
|
5
|
+
<link rel="stylesheet" href="/assets/css/style.css">
|
6
|
+
{%- seo -%}
|
7
|
+
{%- feed_meta -%}
|
8
|
+
{%- if jekyll.environment == 'production' and site.google_analytics -%}
|
9
|
+
{%- include google-analytics.html -%}
|
10
|
+
{%- endif -%}
|
11
|
+
|
12
|
+
{%- include custom-head.html -%}
|
13
|
+
</head>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<header>
|
2
|
+
<nav>
|
3
|
+
{%- for path in site.header_pages -%}
|
4
|
+
{%- assign my_page = site.pages | where: "path", path | first -%}
|
5
|
+
{%- if my_page.title -%}
|
6
|
+
<a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
|
7
|
+
{%- endif -%}
|
8
|
+
{%- endfor -%}
|
9
|
+
</nav>
|
10
|
+
<h1>
|
11
|
+
<a href="/" class="site-title">{{ site.title | escape }}</a>
|
12
|
+
</h1>
|
13
|
+
</header>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
3
|
+
{%- include head.html -%}
|
4
|
+
<body>
|
5
|
+
{%- include header.html -%}
|
6
|
+
|
7
|
+
<main class="page-content" aria-label="Content">
|
8
|
+
<div class="wrapper">
|
9
|
+
{{ content }}
|
10
|
+
</div>
|
11
|
+
</main>
|
12
|
+
|
13
|
+
{%- include footer.html -%}
|
14
|
+
</body>
|
15
|
+
</html>
|
data/_layouts/home.html
ADDED
@@ -0,0 +1,58 @@
|
|
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
|
+
{% if site.paginate %}
|
13
|
+
{% assign posts = paginator.posts %}
|
14
|
+
{% else %}
|
15
|
+
{% assign posts = site.posts %}
|
16
|
+
{% endif %}
|
17
|
+
|
18
|
+
{%- if posts.size > 0 -%}
|
19
|
+
{%- if page.list_title -%}
|
20
|
+
<h2 class="post-list-heading">{{ page.list_title }}</h2>
|
21
|
+
{%- endif -%}
|
22
|
+
|
23
|
+
{%- for post in posts -%}
|
24
|
+
<h2 class="post-title">
|
25
|
+
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
|
26
|
+
</h2>
|
27
|
+
<p class="post-meta">{{ post.date | date_to_long_string }}</p>
|
28
|
+
{%- if site.show_excerpts -%}
|
29
|
+
{{ post.excerpt }}
|
30
|
+
{%- endif -%}
|
31
|
+
{%- endfor -%}
|
32
|
+
|
33
|
+
{% if site.paginate %}
|
34
|
+
<div class="pager">
|
35
|
+
<ul class="pagination">
|
36
|
+
{%- if paginator.previous_page %}
|
37
|
+
<li><a href="{{ paginator.previous_page_path | relative_url }}" class="previous-page">{{ paginator.previous_page
|
38
|
+
}}</a></li>
|
39
|
+
{%- else %}
|
40
|
+
<li>
|
41
|
+
<div class="pager-edge">•</div>
|
42
|
+
</li>
|
43
|
+
{%- endif %}
|
44
|
+
<li>
|
45
|
+
<div class="current-page">{{ paginator.page }}</div>
|
46
|
+
</li>
|
47
|
+
{%- if paginator.next_page %}
|
48
|
+
<li><a href="{{ paginator.next_page_path | relative_url }}" class="next-page">{{ paginator.next_page }}</a></li>
|
49
|
+
{%- else %}
|
50
|
+
<li>
|
51
|
+
<div class="pager-edge">•</div>
|
52
|
+
</li>
|
53
|
+
{%- endif %}
|
54
|
+
</ul>
|
55
|
+
</div>
|
56
|
+
{%- endif %}
|
57
|
+
{%- endif -%}
|
58
|
+
</div>
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
File without changes
|
@@ -0,0 +1,67 @@
|
|
1
|
+
.highlight {
|
2
|
+
text-align: left;
|
3
|
+
|
4
|
+
pre span {
|
5
|
+
color: var(--preformatted)
|
6
|
+
}
|
7
|
+
|
8
|
+
.c { color: #998; font-style: italic } // Comment
|
9
|
+
.err { color: #a61717; background-color: #e3d2d2 } // Error
|
10
|
+
.k { font-weight: bold } // Keyword
|
11
|
+
.o { font-weight: bold } // Operator
|
12
|
+
.cm { color: #998; font-style: italic } // Comment.Multiline
|
13
|
+
.cp { color: #999; font-weight: bold } // Comment.Preproc
|
14
|
+
.c1 { color: #998; font-style: italic } // Comment.Single
|
15
|
+
.cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
|
16
|
+
.gd { color: #000; background-color: #fdd } // Generic.Deleted
|
17
|
+
.gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
|
18
|
+
.ge { font-style: italic } // Generic.Emph
|
19
|
+
.gr { color: #a00 } // Generic.Error
|
20
|
+
.gh { color: #999 } // Generic.Heading
|
21
|
+
.gi { color: #000; background-color: #dfd } // Generic.Inserted
|
22
|
+
.gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
|
23
|
+
.go { color: #888 } // Generic.Output
|
24
|
+
.gp { color: #555 } // Generic.Prompt
|
25
|
+
.gs { font-weight: bold } // Generic.Strong
|
26
|
+
.gu { color: #aaa } // Generic.Subheading
|
27
|
+
.gt { color: #a00 } // Generic.Traceback
|
28
|
+
.kc { font-weight: bold } // Keyword.Constant
|
29
|
+
.kd { font-weight: bold } // Keyword.Declaration
|
30
|
+
.kp { font-weight: bold } // Keyword.Pseudo
|
31
|
+
.kr { font-weight: bold } // Keyword.Reserved
|
32
|
+
.kt { color: #458; font-weight: bold } // Keyword.Type
|
33
|
+
.m { color: #099 } // Literal.Number
|
34
|
+
.s { color: #d14 } // Literal.String
|
35
|
+
.na { color: #008080 } // Name.Attribute
|
36
|
+
.nb { color: #0086B3 } // Name.Builtin
|
37
|
+
.nc { color: #458; font-weight: bold } // Name.Class
|
38
|
+
.no { color: #008080 } // Name.Constant
|
39
|
+
.ni { color: #800080 } // Name.Entity
|
40
|
+
.ne { color: #900; font-weight: bold } // Name.Exception
|
41
|
+
.nf { color: #900; font-weight: bold } // Name.Function
|
42
|
+
.nn { color: #555 } // Name.Namespace
|
43
|
+
.nt { color: #000080 } // Name.Tag
|
44
|
+
.nv { color: #008080 } // Name.Variable
|
45
|
+
.ow { font-weight: bold } // Operator.Word
|
46
|
+
.w { color: #bbb } // Text.Whitespace
|
47
|
+
.mf { color: #099 } // Literal.Number.Float
|
48
|
+
.mh { color: #099 } // Literal.Number.Hex
|
49
|
+
.mi { color: #099 } // Literal.Number.Integer
|
50
|
+
.mo { color: #099 } // Literal.Number.Oct
|
51
|
+
.sb { color: #d14 } // Literal.String.Backtick
|
52
|
+
.sc { color: #d14 } // Literal.String.Char
|
53
|
+
.sd { color: #d14 } // Literal.String.Doc
|
54
|
+
.s2 { color: #d14 } // Literal.String.Double
|
55
|
+
.se { color: #d14 } // Literal.String.Escape
|
56
|
+
.sh { color: #d14 } // Literal.String.Heredoc
|
57
|
+
.si { color: #d14 } // Literal.String.Interpol
|
58
|
+
.sx { color: #d14 } // Literal.String.Other
|
59
|
+
.sr { color: #009926 } // Literal.String.Regex
|
60
|
+
.s1 { color: #d14 } // Literal.String.Single
|
61
|
+
.ss { color: #990073 } // Literal.String.Symbol
|
62
|
+
.bp { color: #999 } // Name.Builtin.Pseudo
|
63
|
+
.vc { color: #008080 } // Name.Variable.Class
|
64
|
+
.vg { color: #008080 } // Name.Variable.Global
|
65
|
+
.vi { color: #008080 } // Name.Variable.Instance
|
66
|
+
.il { color: #099 } // Literal.Number.Integer.Long
|
67
|
+
}
|
@@ -0,0 +1,224 @@
|
|
1
|
+
.highlight {
|
2
|
+
$white: #f8f8f2;
|
3
|
+
$bg-black: #272822;
|
4
|
+
|
5
|
+
text-align: left;
|
6
|
+
|
7
|
+
pre {
|
8
|
+
color: $white;
|
9
|
+
background-color: $bg-black;
|
10
|
+
|
11
|
+
code, span {
|
12
|
+
color: $white;
|
13
|
+
}
|
14
|
+
}
|
15
|
+
|
16
|
+
.c, .ch, .cd, .cpf {
|
17
|
+
color: #75715e;
|
18
|
+
font-style: italic;
|
19
|
+
}
|
20
|
+
.cm {
|
21
|
+
color: #75715e;
|
22
|
+
font-style: italic;
|
23
|
+
}
|
24
|
+
.c1 {
|
25
|
+
color: #75715e;
|
26
|
+
font-style: italic;
|
27
|
+
}
|
28
|
+
.cp {
|
29
|
+
color: #75715e;
|
30
|
+
font-weight: bold;
|
31
|
+
}
|
32
|
+
.cs {
|
33
|
+
color: #75715e;
|
34
|
+
font-weight: bold;
|
35
|
+
font-style: italic;
|
36
|
+
}
|
37
|
+
.err {
|
38
|
+
color: #960050;
|
39
|
+
background-color: #1e0010;
|
40
|
+
}
|
41
|
+
.gi {
|
42
|
+
color: #ffffff;
|
43
|
+
background-color: #324932;
|
44
|
+
}
|
45
|
+
.gd {
|
46
|
+
color: #ffffff;
|
47
|
+
background-color: #493131;
|
48
|
+
}
|
49
|
+
.ge {
|
50
|
+
color: #000000;
|
51
|
+
font-style: italic;
|
52
|
+
}
|
53
|
+
.gr {
|
54
|
+
color: #aa0000;
|
55
|
+
}
|
56
|
+
.gt {
|
57
|
+
color: #aa0000;
|
58
|
+
}
|
59
|
+
.gh {
|
60
|
+
color: #999999;
|
61
|
+
}
|
62
|
+
.go {
|
63
|
+
color: #888888;
|
64
|
+
}
|
65
|
+
.gp {
|
66
|
+
color: #555555;
|
67
|
+
}
|
68
|
+
.gs {
|
69
|
+
font-weight: bold;
|
70
|
+
}
|
71
|
+
.gu {
|
72
|
+
color: #aaaaaa;
|
73
|
+
}
|
74
|
+
.k, .kv {
|
75
|
+
color: #66d9ef;
|
76
|
+
font-weight: bold;
|
77
|
+
}
|
78
|
+
.kc {
|
79
|
+
color: #66d9ef;
|
80
|
+
font-weight: bold;
|
81
|
+
}
|
82
|
+
.kd {
|
83
|
+
color: #66d9ef;
|
84
|
+
font-weight: bold;
|
85
|
+
}
|
86
|
+
.kp {
|
87
|
+
color: #66d9ef;
|
88
|
+
font-weight: bold;
|
89
|
+
}
|
90
|
+
.kr {
|
91
|
+
color: #66d9ef;
|
92
|
+
font-weight: bold;
|
93
|
+
}
|
94
|
+
.kt {
|
95
|
+
color: #66d9ef;
|
96
|
+
font-weight: bold;
|
97
|
+
}
|
98
|
+
.kn {
|
99
|
+
color: #f92672;
|
100
|
+
font-weight: bold;
|
101
|
+
}
|
102
|
+
.ow {
|
103
|
+
color: #f92672;
|
104
|
+
font-weight: bold;
|
105
|
+
}
|
106
|
+
.o {
|
107
|
+
color: #f92672;
|
108
|
+
font-weight: bold;
|
109
|
+
}
|
110
|
+
.mf {
|
111
|
+
color: #ae81ff;
|
112
|
+
}
|
113
|
+
.mh {
|
114
|
+
color: #ae81ff;
|
115
|
+
}
|
116
|
+
.il {
|
117
|
+
color: #ae81ff;
|
118
|
+
}
|
119
|
+
.mi {
|
120
|
+
color: #ae81ff;
|
121
|
+
}
|
122
|
+
.mo {
|
123
|
+
color: #ae81ff;
|
124
|
+
}
|
125
|
+
.m, .mb, .mx {
|
126
|
+
color: #ae81ff;
|
127
|
+
}
|
128
|
+
.se {
|
129
|
+
color: #ae81ff;
|
130
|
+
}
|
131
|
+
.sa {
|
132
|
+
color: #66d9ef;
|
133
|
+
font-weight: bold;
|
134
|
+
}
|
135
|
+
.sb {
|
136
|
+
color: #e6db74;
|
137
|
+
}
|
138
|
+
.sc {
|
139
|
+
color: #e6db74;
|
140
|
+
}
|
141
|
+
.sd {
|
142
|
+
color: #e6db74;
|
143
|
+
}
|
144
|
+
.s2 {
|
145
|
+
color: #e6db74;
|
146
|
+
}
|
147
|
+
.sh {
|
148
|
+
color: #e6db74;
|
149
|
+
}
|
150
|
+
.si {
|
151
|
+
color: #e6db74;
|
152
|
+
}
|
153
|
+
.sx {
|
154
|
+
color: #e6db74;
|
155
|
+
}
|
156
|
+
.sr {
|
157
|
+
color: #e6db74;
|
158
|
+
}
|
159
|
+
.s1 {
|
160
|
+
color: #e6db74;
|
161
|
+
}
|
162
|
+
.ss {
|
163
|
+
color: #e6db74;
|
164
|
+
}
|
165
|
+
.s, .dl {
|
166
|
+
color: #e6db74;
|
167
|
+
}
|
168
|
+
.na {
|
169
|
+
color: #a6e22e;
|
170
|
+
}
|
171
|
+
.nc {
|
172
|
+
color: #a6e22e;
|
173
|
+
font-weight: bold;
|
174
|
+
}
|
175
|
+
.nd {
|
176
|
+
color: #a6e22e;
|
177
|
+
font-weight: bold;
|
178
|
+
}
|
179
|
+
.ne {
|
180
|
+
color: #a6e22e;
|
181
|
+
font-weight: bold;
|
182
|
+
}
|
183
|
+
.nf, .fm {
|
184
|
+
color: #a6e22e;
|
185
|
+
font-weight: bold;
|
186
|
+
}
|
187
|
+
.no {
|
188
|
+
color: #66d9ef;
|
189
|
+
}
|
190
|
+
.bp {
|
191
|
+
color: $white;
|
192
|
+
}
|
193
|
+
.nb {
|
194
|
+
color: $white;
|
195
|
+
}
|
196
|
+
.ni {
|
197
|
+
color: $white;
|
198
|
+
}
|
199
|
+
.nn {
|
200
|
+
color: $white;
|
201
|
+
}
|
202
|
+
.vc {
|
203
|
+
color: $white;
|
204
|
+
}
|
205
|
+
.vg {
|
206
|
+
color: $white;
|
207
|
+
}
|
208
|
+
.vi {
|
209
|
+
color: $white;
|
210
|
+
}
|
211
|
+
.nv, .vm {
|
212
|
+
color: $white;
|
213
|
+
}
|
214
|
+
.w {
|
215
|
+
color: $white;
|
216
|
+
}
|
217
|
+
.nl {
|
218
|
+
color: $white;
|
219
|
+
font-weight: bold;
|
220
|
+
}
|
221
|
+
.nt {
|
222
|
+
color: #f92672;
|
223
|
+
}
|
224
|
+
}
|
metadata
ADDED
@@ -0,0 +1,117 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll-theme-classless-simple
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- toshimaru
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-05-01 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.9'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.9'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll-seo-tag
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: jekyll-feed
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: kramdown-parser-gfm
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: jekyll-theme-classless-simple is a Jekyll theme styled with Simple.css,
|
70
|
+
a classless CSS framework.
|
71
|
+
email:
|
72
|
+
- me@toshimaru.net
|
73
|
+
executables: []
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- LICENSE.txt
|
78
|
+
- README.md
|
79
|
+
- _config.yml
|
80
|
+
- _includes/custom-head.html
|
81
|
+
- _includes/footer.html
|
82
|
+
- _includes/google-analytics.html
|
83
|
+
- _includes/head.html
|
84
|
+
- _includes/header.html
|
85
|
+
- _layouts/default.html
|
86
|
+
- _layouts/home.html
|
87
|
+
- _layouts/page.html
|
88
|
+
- _layouts/post.html
|
89
|
+
- _sass/classless-simple/initialize.sass
|
90
|
+
- _sass/classless-simple/skins/classic.scss
|
91
|
+
- _sass/classless-simple/syntax/default.scss
|
92
|
+
- _sass/classless-simple/syntax/monokai.scss
|
93
|
+
- assets/css/style.scss
|
94
|
+
homepage: https://github.com/toshimaru/jekyll-theme-classless-simple
|
95
|
+
licenses:
|
96
|
+
- MIT
|
97
|
+
metadata: {}
|
98
|
+
post_install_message:
|
99
|
+
rdoc_options: []
|
100
|
+
require_paths:
|
101
|
+
- lib
|
102
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: 2.7.0
|
107
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
requirements: []
|
113
|
+
rubygems_version: 3.3.7
|
114
|
+
signing_key:
|
115
|
+
specification_version: 4
|
116
|
+
summary: Jekyll theme styled with Simple.css
|
117
|
+
test_files: []
|