minimum 0.1.1 → 0.1.2
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 +4 -4
- data/LICENSE.md +21 -0
- data/README.md +61 -0
- data/_includes/footer.html +5 -0
- data/_includes/google_adsense.html +9 -0
- data/_includes/google_analytics.html +9 -0
- data/_includes/head.html +21 -0
- data/_includes/header.html +35 -0
- data/_layouts/default.html +19 -0
- data/_sass/_base.scss +274 -0
- data/_sass/_syntax.scss +61 -0
- metadata +14 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc55852d6c98b8f8a6874f626690e00e9b6bb1cf
|
|
4
|
+
data.tar.gz: fc6de5a434ab8b873eff4f0aa0c644e600131e91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8d46f7c14f623993940eb6161f6a285a9541eeeef1c406f934a3b3a8124517b7c424c9366ef4ef87521f52470f0012c29a768a597ec65e83c0efdd21438e96e
|
|
7
|
+
data.tar.gz: 3821a6e48d5c75a7a6727d92716a5a46c29c0a71c6a42a3541ec3f1d9687c1c43a77a7417ad4e2fe37bd61efb77801e78f80ef90663be542a3ad41b6c8a4ebb5
|
data/LICENSE.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2016 Casper Beyer
|
|
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,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
---
|
|
3
|
+
# Minimum - Minimum project theme for Jekyll.
|
|
4
|
+
|
|
5
|
+
Minimum is a minimal project theme for Jekyll, it's based on the automatic page
|
|
6
|
+
theme on GitHub called minimal by Steve Smith.
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
Add this line to your Jekyll site's Gemfile:
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
gem "minimal"
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
And add this line to your Jekyll site:
|
|
17
|
+
|
|
18
|
+
```yaml
|
|
19
|
+
theme: minimal
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
And then execute:
|
|
23
|
+
|
|
24
|
+
```console
|
|
25
|
+
$ bundle
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or install it yourself as:
|
|
29
|
+
|
|
30
|
+
```console
|
|
31
|
+
$ gem install minimal
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Usage
|
|
35
|
+
|
|
36
|
+
TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
|
|
37
|
+
|
|
38
|
+
## Contributing
|
|
39
|
+
|
|
40
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/hasharray/minimum.
|
|
41
|
+
|
|
42
|
+
## Development
|
|
43
|
+
|
|
44
|
+
To set up your environment to develop this theme, run `bundle install`.
|
|
45
|
+
|
|
46
|
+
You theme is setup just like a normal Jekyll site! To test your theme,
|
|
47
|
+
run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`.
|
|
48
|
+
|
|
49
|
+
This starts a Jekyll server using your theme.
|
|
50
|
+
Add pages, documents, data, etc. like normal to test your theme's contents.
|
|
51
|
+
As you make modifications to your theme and to your content, your site will
|
|
52
|
+
regenerate and you should see the changes in the browser after a refresh, just
|
|
53
|
+
like normal.
|
|
54
|
+
|
|
55
|
+
When your theme is released, only the files in `_layouts`, `_includes`, and
|
|
56
|
+
`_sass` tracked with Git will be released.
|
|
57
|
+
|
|
58
|
+
## License
|
|
59
|
+
|
|
60
|
+
The theme is available as open source under the terms of the
|
|
61
|
+
[MIT License](http://hasharrayp.pw/minimal/license).
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<ins class="adsbygoogle"
|
|
2
|
+
data-ad-client="{{ site.google_adsense | split: ":" | first }}"
|
|
3
|
+
data-ad-slot="{{ site.google_adsense | split: ":" | last }}"
|
|
4
|
+
data-ad-format="auto"></ins>
|
|
5
|
+
|
|
6
|
+
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
|
7
|
+
<script>
|
|
8
|
+
(adsbygoogle = window.adsbygoogle || []).push({});
|
|
9
|
+
</script>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
3
|
+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
4
|
+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
5
|
+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
6
|
+
|
|
7
|
+
ga('create', {{ site.google_analytics }}, 'auto');
|
|
8
|
+
ga('send', 'pageview');
|
|
9
|
+
</script>
|
data/_includes/head.html
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<head>
|
|
2
|
+
<meta charset="utf-8">
|
|
3
|
+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
|
4
|
+
<style type="text/css">
|
|
5
|
+
{% capture style %}
|
|
6
|
+
@import "base";
|
|
7
|
+
@import "syntax";
|
|
8
|
+
{% endcapture %}
|
|
9
|
+
|
|
10
|
+
{{ style | scssify }}
|
|
11
|
+
</style>
|
|
12
|
+
|
|
13
|
+
<meta name="viewport" content="width=device-width">
|
|
14
|
+
<!--[if lt IE 9]>
|
|
15
|
+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
16
|
+
<![endif]-->
|
|
17
|
+
|
|
18
|
+
{% if site.google_analytics and site.environment == 'production' %}
|
|
19
|
+
{% include google_analytics.html %}
|
|
20
|
+
{% endif %}
|
|
21
|
+
</head>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<header>
|
|
2
|
+
<h1>
|
|
3
|
+
{% if site.title %}
|
|
4
|
+
{{ site.title }}
|
|
5
|
+
{% else %}
|
|
6
|
+
{{ site.github.project_title }}
|
|
7
|
+
{% endif %}
|
|
8
|
+
</h1>
|
|
9
|
+
|
|
10
|
+
<p>
|
|
11
|
+
{% if site.tagline %}
|
|
12
|
+
{{ site.tagline }}
|
|
13
|
+
{% else %}
|
|
14
|
+
{{ site.github.project_tagline }}
|
|
15
|
+
{% endif %}
|
|
16
|
+
</p>
|
|
17
|
+
|
|
18
|
+
{% if site.github %}
|
|
19
|
+
<p class="view">
|
|
20
|
+
<a href="{{ site.github.repository_url }}">
|
|
21
|
+
View the Project on GitHub <small>{{ site.github.repository_nwo }}</small>
|
|
22
|
+
</a>
|
|
23
|
+
</p>
|
|
24
|
+
|
|
25
|
+
<ul>
|
|
26
|
+
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
|
|
27
|
+
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
|
|
28
|
+
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
|
|
29
|
+
</ul>
|
|
30
|
+
{% endif %}
|
|
31
|
+
|
|
32
|
+
{% if site.google_adsense %}
|
|
33
|
+
{% include google_adsense.html %}
|
|
34
|
+
{% endif %}
|
|
35
|
+
</header>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
---
|
|
3
|
+
|
|
4
|
+
<!DOCTYPE html>
|
|
5
|
+
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
|
6
|
+
{% include head.html %}
|
|
7
|
+
|
|
8
|
+
<body class="container">
|
|
9
|
+
<main class="content">
|
|
10
|
+
{% include header.html %}
|
|
11
|
+
|
|
12
|
+
<section>
|
|
13
|
+
{{ content }}
|
|
14
|
+
</section>
|
|
15
|
+
|
|
16
|
+
{% include footer.html %}
|
|
17
|
+
</main>
|
|
18
|
+
</body>
|
|
19
|
+
</html>
|
data/_sass/_base.scss
ADDED
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
body {
|
|
2
|
+
background-color: #fff;
|
|
3
|
+
padding:50px;
|
|
4
|
+
font: 14px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
5
|
+
color:#727272;
|
|
6
|
+
font-weight:400;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
h1, h2, h3, h4, h5, h6 {
|
|
10
|
+
color:#222;
|
|
11
|
+
margin:0 0 20px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
p, ul, ol, table, pre, dl {
|
|
15
|
+
margin:0 0 20px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
h1, h2, h3 {
|
|
19
|
+
line-height:1.1;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
h1 {
|
|
23
|
+
font-size:28px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
h2 {
|
|
27
|
+
color:#393939;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
h3, h4, h5, h6 {
|
|
31
|
+
color:#494949;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
a {
|
|
35
|
+
color:#39c;
|
|
36
|
+
text-decoration:none;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
a:hover {
|
|
40
|
+
color:#069;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
a small {
|
|
44
|
+
font-size:11px;
|
|
45
|
+
color:#777;
|
|
46
|
+
margin-top:-0.3em;
|
|
47
|
+
display:block;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
a:hover small {
|
|
51
|
+
color:#777;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.container {
|
|
55
|
+
width:860px;
|
|
56
|
+
margin:0 auto;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
blockquote {
|
|
60
|
+
border-left:1px solid #e5e5e5;
|
|
61
|
+
margin:0;
|
|
62
|
+
padding:0 0 0 20px;
|
|
63
|
+
font-style:italic;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
code, pre {
|
|
67
|
+
font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal, Consolas, Liberation Mono, DejaVu Sans Mono, Courier New, monospace;
|
|
68
|
+
color:#333;
|
|
69
|
+
font-size:12px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
pre {
|
|
73
|
+
padding:8px 15px;
|
|
74
|
+
background: #f8f8f8;
|
|
75
|
+
border-radius:5px;
|
|
76
|
+
border:1px solid #e5e5e5;
|
|
77
|
+
overflow-x: auto;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
table {
|
|
81
|
+
width:100%;
|
|
82
|
+
border-collapse:collapse;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
th, td {
|
|
86
|
+
text-align:left;
|
|
87
|
+
padding:5px 10px;
|
|
88
|
+
border-bottom:1px solid #e5e5e5;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
dt {
|
|
92
|
+
color:#444;
|
|
93
|
+
font-weight:700;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
th {
|
|
97
|
+
color:#444;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
img {
|
|
101
|
+
max-width:100%;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
header {
|
|
105
|
+
width:270px;
|
|
106
|
+
float:left;
|
|
107
|
+
position:fixed;
|
|
108
|
+
-webkit-font-smoothing:subpixel-antialiased;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
header ul {
|
|
112
|
+
list-style:none;
|
|
113
|
+
height:40px;
|
|
114
|
+
padding:0;
|
|
115
|
+
background: #f4f4f4;
|
|
116
|
+
border-radius:5px;
|
|
117
|
+
border:1px solid #e0e0e0;
|
|
118
|
+
width:270px;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
header li {
|
|
122
|
+
width:89px;
|
|
123
|
+
float:left;
|
|
124
|
+
border-right:1px solid #e0e0e0;
|
|
125
|
+
height:40px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
header li:first-child a {
|
|
129
|
+
border-radius:5px 0 0 5px;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
header li:last-child a {
|
|
133
|
+
border-radius:0 5px 5px 0;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
header ul a {
|
|
137
|
+
line-height:1;
|
|
138
|
+
font-size:11px;
|
|
139
|
+
color:#999;
|
|
140
|
+
display:block;
|
|
141
|
+
text-align:center;
|
|
142
|
+
padding-top:6px;
|
|
143
|
+
height:34px;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
header ul a:hover {
|
|
147
|
+
color:#999;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
header ul a:active {
|
|
151
|
+
background-color:#f0f0f0;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
strong {
|
|
155
|
+
color:#222;
|
|
156
|
+
font-weight:700;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
header ul li + li + li {
|
|
160
|
+
border-right:none;
|
|
161
|
+
width:89px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
header ul a strong {
|
|
165
|
+
font-size:14px;
|
|
166
|
+
display:block;
|
|
167
|
+
color:#222;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
ins {
|
|
171
|
+
display:block;
|
|
172
|
+
max-width: 480px;
|
|
173
|
+
max-height: 480px;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
section {
|
|
177
|
+
width:500px;
|
|
178
|
+
float:right;
|
|
179
|
+
padding-bottom:50px;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
small {
|
|
183
|
+
font-size:11px;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
hr {
|
|
187
|
+
border:0;
|
|
188
|
+
background:#e5e5e5;
|
|
189
|
+
height:1px;
|
|
190
|
+
margin:0 0 20px;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
footer {
|
|
194
|
+
width:270px;
|
|
195
|
+
float:left;
|
|
196
|
+
position:fixed;
|
|
197
|
+
bottom:50px;
|
|
198
|
+
-webkit-font-smoothing:subpixel-antialiased;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
@media print, screen and (max-width: 960px) {
|
|
202
|
+
|
|
203
|
+
div.container {
|
|
204
|
+
width:auto;
|
|
205
|
+
margin:0;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
header, section, footer {
|
|
209
|
+
float:none;
|
|
210
|
+
position:static;
|
|
211
|
+
width:auto;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
header {
|
|
215
|
+
padding-right:320px;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
section {
|
|
219
|
+
border:1px solid #e5e5e5;
|
|
220
|
+
border-width:1px 0;
|
|
221
|
+
padding:20px 0;
|
|
222
|
+
margin:0 0 20px;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
header a small {
|
|
226
|
+
display:inline;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
header ul {
|
|
230
|
+
position:absolute;
|
|
231
|
+
right:50px;
|
|
232
|
+
top:52px;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
@media print, screen and (max-width: 720px) {
|
|
237
|
+
body {
|
|
238
|
+
word-wrap:break-word;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
header {
|
|
242
|
+
padding:0;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
header ul, header p.view {
|
|
246
|
+
position:static;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
pre, code {
|
|
250
|
+
word-wrap:normal;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
@media print, screen and (max-width: 480px) {
|
|
255
|
+
body {
|
|
256
|
+
padding:15px;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
header ul {
|
|
260
|
+
width:99%;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
header li, header ul li + li + li {
|
|
264
|
+
width:33%;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
@media print {
|
|
269
|
+
body {
|
|
270
|
+
padding:0.4in;
|
|
271
|
+
font-size:12pt;
|
|
272
|
+
color:#444;
|
|
273
|
+
}
|
|
274
|
+
}
|
data/_sass/_syntax.scss
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
.highlight .hll { background-color: #ffc; }
|
|
2
|
+
.highlight .c { color: #999; } /* Comment */
|
|
3
|
+
.highlight .err { color: #a00; background-color: #faa } /* Error */
|
|
4
|
+
.highlight .k { color: #069; } /* Keyword */
|
|
5
|
+
.highlight .o { color: #555 } /* Operator */
|
|
6
|
+
.highlight .cm { color: #09f; font-style: italic } /* Comment.Multiline */
|
|
7
|
+
.highlight .cp { color: #099 } /* Comment.Preproc */
|
|
8
|
+
.highlight .c1 { color: #999; } /* Comment.Single */
|
|
9
|
+
.highlight .cs { color: #999; } /* Comment.Special */
|
|
10
|
+
.highlight .gd { background-color: #fcc; border: 1px solid #c00 } /* Generic.Deleted */
|
|
11
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
|
12
|
+
.highlight .gr { color: #f00 } /* Generic.Error */
|
|
13
|
+
.highlight .gh { color: #030; } /* Generic.Heading */
|
|
14
|
+
.highlight .gi { background-color: #cfc; border: 1px solid #0c0 } /* Generic.Inserted */
|
|
15
|
+
.highlight .go { color: #aaa } /* Generic.Output */
|
|
16
|
+
.highlight .gp { color: #009; } /* Generic.Prompt */
|
|
17
|
+
.highlight .gs { } /* Generic.Strong */
|
|
18
|
+
.highlight .gu { color: #030; } /* Generic.Subheading */
|
|
19
|
+
.highlight .gt { color: #9c6 } /* Generic.Traceback */
|
|
20
|
+
.highlight .kc { color: #069; } /* Keyword.Constant */
|
|
21
|
+
.highlight .kd { color: #069; } /* Keyword.Declaration */
|
|
22
|
+
.highlight .kn { color: #069; } /* Keyword.Namespace */
|
|
23
|
+
.highlight .kp { color: #069 } /* Keyword.Pseudo */
|
|
24
|
+
.highlight .kr { color: #069; } /* Keyword.Reserved */
|
|
25
|
+
.highlight .kt { color: #078; } /* Keyword.Type */
|
|
26
|
+
.highlight .m { color: #f60 } /* Literal.Number */
|
|
27
|
+
.highlight .s { color: #d44950 } /* Literal.String */
|
|
28
|
+
.highlight .na { color: #4f9fcf } /* Name.Attribute */
|
|
29
|
+
.highlight .nb { color: #366 } /* Name.Builtin */
|
|
30
|
+
.highlight .nc { color: #0a8; } /* Name.Class */
|
|
31
|
+
.highlight .no { color: #360 } /* Name.Constant */
|
|
32
|
+
.highlight .nd { color: #99f } /* Name.Decorator */
|
|
33
|
+
.highlight .ni { color: #999; } /* Name.Entity */
|
|
34
|
+
.highlight .ne { color: #c00; } /* Name.Exception */
|
|
35
|
+
.highlight .nf { color: #c0f } /* Name.Function */
|
|
36
|
+
.highlight .nl { color: #99f } /* Name.Label */
|
|
37
|
+
.highlight .nn { color: #0cf; } /* Name.Namespace */
|
|
38
|
+
.highlight .nt { color: #2f6f9f; } /* Name.Tag */
|
|
39
|
+
.highlight .nv { color: #033 } /* Name.Variable */
|
|
40
|
+
.highlight .ow { color: #000; } /* Operator.Word */
|
|
41
|
+
.highlight .w { color: #bbb } /* Text.Whitespace */
|
|
42
|
+
.highlight .mf { color: #f60 } /* Literal.Number.Float */
|
|
43
|
+
.highlight .mh { color: #f60 } /* Literal.Number.Hex */
|
|
44
|
+
.highlight .mi { color: #f60 } /* Literal.Number.Integer */
|
|
45
|
+
.highlight .mo { color: #f60 } /* Literal.Number.Oct */
|
|
46
|
+
.highlight .sb { color: #c30 } /* Literal.String.Backtick */
|
|
47
|
+
.highlight .sc { color: #c30 } /* Literal.String.Char */
|
|
48
|
+
.highlight .sd { color: #c30; font-style: italic } /* Literal.String.Doc */
|
|
49
|
+
.highlight .s2 { color: #c30 } /* Literal.String.Double */
|
|
50
|
+
.highlight .se { color: #c30; } /* Literal.String.Escape */
|
|
51
|
+
.highlight .sh { color: #c30 } /* Literal.String.Heredoc */
|
|
52
|
+
.highlight .si { color: #a00 } /* Literal.String.Interpol */
|
|
53
|
+
.highlight .sx { color: #c30 } /* Literal.String.Other */
|
|
54
|
+
.highlight .sr { color: #3aa } /* Literal.String.Regex */
|
|
55
|
+
.highlight .s1 { color: #c30 } /* Literal.String.Single */
|
|
56
|
+
.highlight .ss { color: #fc3 } /* Literal.String.Symbol */
|
|
57
|
+
.highlight .bp { color: #366 } /* Name.Builtin.Pseudo */
|
|
58
|
+
.highlight .vc { color: #033 } /* Name.Variable.Class */
|
|
59
|
+
.highlight .vg { color: #033 } /* Name.Variable.Global */
|
|
60
|
+
.highlight .vi { color: #033 } /* Name.Variable.Instance */
|
|
61
|
+
.highlight .il { color: #f60 } /* Literal.Number.Integer.Long */
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: minimum
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Casper Beyer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-10-
|
|
11
|
+
date: 2016-10-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -58,8 +58,18 @@ email:
|
|
|
58
58
|
executables: []
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
|
-
files:
|
|
62
|
-
|
|
61
|
+
files:
|
|
62
|
+
- LICENSE.md
|
|
63
|
+
- README.md
|
|
64
|
+
- _includes/footer.html
|
|
65
|
+
- _includes/google_adsense.html
|
|
66
|
+
- _includes/google_analytics.html
|
|
67
|
+
- _includes/head.html
|
|
68
|
+
- _includes/header.html
|
|
69
|
+
- _layouts/default.html
|
|
70
|
+
- _sass/_base.scss
|
|
71
|
+
- _sass/_syntax.scss
|
|
72
|
+
homepage: https://github.com/hasharray/minimum
|
|
63
73
|
licenses:
|
|
64
74
|
- MIT
|
|
65
75
|
metadata: {}
|