jekyll-theme-hacker 0.0.4 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +36 -12
- data/_includes/head-custom-google-analytics.html +10 -0
- data/_includes/head-custom-theme-colors.html +5 -0
- data/_includes/head-custom.html +12 -0
- data/_layouts/default.html +9 -15
- data/_layouts/post.html +14 -0
- data/_sass/_default_colors.scss +15 -0
- data/_sass/hacker.scss +4 -0
- data/_sass/jekyll-theme-hacker.scss +41 -20
- data/_sass/rouge-base16-dark.scss +81 -75
- data/assets/images/bullet.png +0 -0
- metadata +79 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 641cdae6a3197b9585347d44be9b1d45d134441c2808727a7e04f96af77e09d5
|
4
|
+
data.tar.gz: f5348391e9d19ad2621e4587c66a9bc8ea618e35ac492de7defd31faa3851243
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ed49ee867535b22ff7771b7e29b0b375c8b20fdba611624cc9e5130b08bc0197c57f6a9e981181383138dc1d525c709cfe3899e3db56c88bb75812b8e188a5d
|
7
|
+
data.tar.gz: cc4a6b500c03a6cb70b533a59b6ed1b32e282bb3e114aeace8df2818f08cb05a967e650464649a07f9094f43b4778db0c88e39a5ee85f70bd523b2c079448557
|
data/README.md
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
# The Hacker theme
|
2
2
|
|
3
|
-
[![
|
3
|
+
[![.github/workflows/ci.yaml](https://github.com/pages-themes/hacker/actions/workflows/ci.yaml/badge.svg)](https://github.com/pages-themes/hacker/actions/workflows/ci.yaml) [![Gem Version](https://badge.fury.io/rb/jekyll-theme-hacker.svg)](https://badge.fury.io/rb/jekyll-theme-hacker)
|
4
4
|
|
5
5
|
*Hacker is a Jekyll theme for GitHub Pages. You can [preview the theme to see what it looks like](http://pages-themes.github.io/hacker), or even [use it today](#usage).*
|
6
6
|
|
7
|
-
![Thumbnail of
|
7
|
+
![Thumbnail of Hacker](thumbnail.png)
|
8
8
|
|
9
9
|
## Usage
|
10
10
|
|
@@ -13,7 +13,9 @@ To use the Hacker theme:
|
|
13
13
|
1. Add the following to your site's `_config.yml`:
|
14
14
|
|
15
15
|
```yml
|
16
|
-
|
16
|
+
remote_theme: pages-themes/hacker@v0.2.0
|
17
|
+
plugins:
|
18
|
+
- jekyll-remote-theme # add this line to the plugins list if you already have one
|
17
19
|
```
|
18
20
|
|
19
21
|
2. Optionally, if you'd like to preview your site on your computer, add the following to your site's `Gemfile`:
|
@@ -22,8 +24,6 @@ To use the Hacker theme:
|
|
22
24
|
gem "github-pages", group: :jekyll_plugins
|
23
25
|
```
|
24
26
|
|
25
|
-
|
26
|
-
|
27
27
|
## Customizing
|
28
28
|
|
29
29
|
### Configuration variables
|
@@ -38,7 +38,7 @@ description: [A short description of your site's purpose]
|
|
38
38
|
Additionally, you may choose to set the following optional variables:
|
39
39
|
|
40
40
|
```yml
|
41
|
-
show_downloads: ["true" or "false" to indicate whether to provide a download URL]
|
41
|
+
show_downloads: ["true" or "false" (unquoted) to indicate whether to provide a download URL]
|
42
42
|
google_analytics: [Your Google Analytics tracking ID]
|
43
43
|
```
|
44
44
|
|
@@ -56,14 +56,38 @@ If you'd like to add your own custom styles:
|
|
56
56
|
```
|
57
57
|
3. Add any custom CSS (or Sass, including imports) you'd like immediately after the `@import` line
|
58
58
|
|
59
|
+
*Note: If you'd like to change the theme's Sass variables, you must set new values before the `@import` line in your stylesheet.*
|
60
|
+
|
59
61
|
### Layouts
|
60
62
|
|
61
63
|
If you'd like to change the theme's HTML layout:
|
62
64
|
|
63
|
-
1. [
|
64
|
-
2.
|
65
|
-
3.
|
66
|
-
4.
|
65
|
+
1. For some changes such as a custom `favicon`, you can add custom files in your local `_includes` folder. The files [provided with the theme](https://github.com/pages-themes/hacker/tree/master/_includes) provide a starting point and are included by the [original layout template](https://github.com/pages-themes/hacker/blob/master/_layouts/default.html).
|
66
|
+
2. For more extensive changes, [copy the original template](https://github.com/pages-themes/hacker/blob/master/_layouts/default.html) from the theme's repository<br />(*Pro-tip: click "raw" to make copying easier*)
|
67
|
+
3. Create a file called `/_layouts/default.html` in your site
|
68
|
+
4. Paste the default layout content copied in the first step
|
69
|
+
5. Customize the layout as you'd like
|
70
|
+
|
71
|
+
### Customizing Google Analytics code
|
72
|
+
|
73
|
+
Google has released several iterations to their Google Analytics code over the years since this theme was first created. If you would like to take advantage of the latest code, paste it into `_includes/head-custom-google-analytics.html` in your Jekyll site.
|
74
|
+
|
75
|
+
### Overriding GitHub-generated URLs
|
76
|
+
|
77
|
+
Templates often rely on URLs supplied by GitHub such as links to your repository or links to download your project. If you'd like to override one or more default URLs:
|
78
|
+
|
79
|
+
1. Look at [the template source](https://github.com/pages-themes/hacker/blob/master/_layouts/default.html) to determine the name of the variable. It will be in the form of `{{ site.github.zip_url }}`.
|
80
|
+
2. Specify the URL that you'd like the template to use in your site's `_config.yml`. For example, if the variable was `site.github.url`, you'd add the following:
|
81
|
+
```yml
|
82
|
+
github:
|
83
|
+
zip_url: http://example.com/download.zip
|
84
|
+
another_url: another value
|
85
|
+
```
|
86
|
+
3. When your site is built, Jekyll will use the URL you specified, rather than the default one provided by GitHub.
|
87
|
+
|
88
|
+
*Note: You must remove the `site.` prefix, and each variable name (after the `github.`) should be indent with two space below `github:`.*
|
89
|
+
|
90
|
+
For more information, see [the Jekyll variables documentation](https://jekyllrb.com/docs/variables/).
|
67
91
|
|
68
92
|
## Roadmap
|
69
93
|
|
@@ -75,7 +99,7 @@ The Hacker theme is intended to make it quick and easy for GitHub Pages users to
|
|
75
99
|
|
76
100
|
## Contributing
|
77
101
|
|
78
|
-
Interested in contributing to Hacker? We'd love your help. Hacker is an open source project, built one contribution at a time by users like you. See [the CONTRIBUTING file](CONTRIBUTING.md) for instructions on how to contribute.
|
102
|
+
Interested in contributing to Hacker? We'd love your help. Hacker is an open source project, built one contribution at a time by users like you. See [the CONTRIBUTING file](docs/CONTRIBUTING.md) for instructions on how to contribute.
|
79
103
|
|
80
104
|
### Previewing the theme locally
|
81
105
|
|
@@ -89,4 +113,4 @@ If you'd like to preview the theme locally (for example, in the process of propo
|
|
89
113
|
|
90
114
|
### Running tests
|
91
115
|
|
92
|
-
The theme contains a minimal test suite, to ensure a site with the theme would build successfully. To run the tests, simply run `script/cibuild`. You'll need to run `script/bootstrap`
|
116
|
+
The theme contains a minimal test suite, to ensure a site with the theme would build successfully. To run the tests, simply run `script/cibuild`. You'll need to run `script/bootstrap` once before the test script will work.
|
@@ -0,0 +1,10 @@
|
|
1
|
+
{% if site.google_analytics %}
|
2
|
+
<script>
|
3
|
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
4
|
+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
5
|
+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
6
|
+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
7
|
+
ga('create', '{{ site.google_analytics }}', 'auto');
|
8
|
+
ga('send', 'pageview');
|
9
|
+
</script>
|
10
|
+
{% endif %}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<!-- start custom head snippets, customize with your own _includes/head-custom.html file -->
|
2
|
+
|
3
|
+
<!-- Setup theme-color -->
|
4
|
+
{% include head-custom-theme-colors.html %}
|
5
|
+
|
6
|
+
<!-- Setup Google Analytics -->
|
7
|
+
{% include head-custom-google-analytics.html %}
|
8
|
+
|
9
|
+
<!-- You can set your favicon here -->
|
10
|
+
<!-- link rel="shortcut icon" type="image/x-icon" href="{{ '/favicon.ico' | relative_url }}" -->
|
11
|
+
|
12
|
+
<!-- end custom head snippets -->
|
data/_layouts/default.html
CHANGED
@@ -1,17 +1,22 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
|
-
<html>
|
2
|
+
<html lang="{{ site.lang | default: "en-US" }}">
|
3
3
|
<head>
|
4
4
|
<meta charset='utf-8'>
|
5
|
-
<meta http-equiv="X-UA-Compatible" content="
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
6
7
|
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
|
7
|
-
|
8
|
+
{% include head-custom.html %}
|
9
|
+
|
10
|
+
{% seo %}
|
8
11
|
</head>
|
9
12
|
|
10
13
|
<body>
|
11
14
|
|
12
15
|
<header>
|
13
16
|
<div class="container">
|
14
|
-
<
|
17
|
+
<a id="a-title" href="{{ '/' | relative_url }}">
|
18
|
+
<h1>{{ site.title | default: site.github.repository_name }}</h1>
|
19
|
+
</a>
|
15
20
|
<h2>{{ site.description | default: site.github.project_tagline }}</h2>
|
16
21
|
|
17
22
|
<section id="downloads">
|
@@ -29,16 +34,5 @@
|
|
29
34
|
{{ content }}
|
30
35
|
</section>
|
31
36
|
</div>
|
32
|
-
|
33
|
-
{% if site.google_analytics %}
|
34
|
-
<script type="text/javascript">
|
35
|
-
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
36
|
-
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
37
|
-
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
38
|
-
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
39
|
-
ga('create', '{{ site.google_analytics }}', 'auto');
|
40
|
-
ga('send', 'pageview');
|
41
|
-
</script>
|
42
|
-
{% endif %}
|
43
37
|
</body>
|
44
38
|
</html>
|
data/_layouts/post.html
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<small>{{ page.date | date: "%-d %B %Y" }}</small>
|
6
|
+
<h1>{{ page.title }}</h1>
|
7
|
+
|
8
|
+
<p class="view">by {{ page.author | default: site.author }}</p>
|
9
|
+
|
10
|
+
{{content}}
|
11
|
+
|
12
|
+
{% if page.tags %}
|
13
|
+
<small>tags: <em>{{ page.tags | join: "</em> - <em>" }}</em></small>
|
14
|
+
{% endif %}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
$apple-blossom: #ac4142;
|
2
|
+
$alto: #d0d0d0;
|
3
|
+
$bouquet: #aa759f;
|
4
|
+
$chelsea-cucumber: #90a959;
|
5
|
+
$cod-grey: #151515;
|
6
|
+
$conifer: #b5e853;
|
7
|
+
$dove-grey: #666;
|
8
|
+
$gallery: #eaeaea;
|
9
|
+
$grey: #888;
|
10
|
+
$gulf-stream: #75b5aa;
|
11
|
+
$hippie-blue: #6a9fb5;
|
12
|
+
$potters-clay: #8f5536;
|
13
|
+
$rajah: #f4bf75;
|
14
|
+
$raw-sienna: #d28445;
|
15
|
+
$silver-chalice: #aaa;
|
data/_sass/hacker.scss
ADDED
@@ -1,10 +1,24 @@
|
|
1
1
|
@import "rouge-base16-dark";
|
2
|
+
@import "default_colors";
|
3
|
+
|
4
|
+
$body-background: $cod-grey !default;
|
5
|
+
$body-foreground: $gallery !default;
|
6
|
+
$header: $conifer !default;
|
7
|
+
$blockquote-color: $silver-chalice !default;
|
8
|
+
$blockquote-border: $dove-grey !default;
|
9
|
+
$container-max-width: 1000px;
|
10
|
+
|
11
|
+
@mixin media-max-width($max-width) {
|
12
|
+
@media (max-width: $max-width) {
|
13
|
+
@content;
|
14
|
+
}
|
15
|
+
}
|
2
16
|
|
3
17
|
body {
|
4
18
|
margin: 0;
|
5
19
|
padding: 0;
|
6
|
-
background:
|
7
|
-
color:
|
20
|
+
background: $body-background url("../images/bkg.png") 0 0;
|
21
|
+
color: $body-foreground;
|
8
22
|
font-size: 16px;
|
9
23
|
line-height: 1.5;
|
10
24
|
font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
|
@@ -14,7 +28,7 @@ body {
|
|
14
28
|
|
15
29
|
.container {
|
16
30
|
width: 90%;
|
17
|
-
max-width:
|
31
|
+
max-width: $container-max-width;
|
18
32
|
margin: 0 auto;
|
19
33
|
}
|
20
34
|
|
@@ -40,7 +54,7 @@ li {
|
|
40
54
|
header {
|
41
55
|
background: rgba(0, 0, 0, 0.1);
|
42
56
|
width: 100%;
|
43
|
-
border-bottom: 1px dashed
|
57
|
+
border-bottom: 1px dashed $conifer; //header;
|
44
58
|
padding: 20px 0;
|
45
59
|
margin: 0 0 40px 0;
|
46
60
|
}
|
@@ -51,14 +65,18 @@ header h1 {
|
|
51
65
|
margin: 0 0 0 -40px;
|
52
66
|
font-weight: bold;
|
53
67
|
font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
|
54
|
-
color:
|
68
|
+
color: $conifer;//$header;
|
55
69
|
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
|
56
70
|
0 0 5px rgba(181, 232, 83, 0.1),
|
57
71
|
0 0 10px rgba(181, 232, 83, 0.1);
|
58
72
|
letter-spacing: -1px;
|
59
73
|
-webkit-font-smoothing: antialiased;
|
74
|
+
@include media-max-width($container-max-width) {
|
75
|
+
margin-left: 0;
|
76
|
+
}
|
60
77
|
}
|
61
78
|
|
79
|
+
|
62
80
|
header h1:before {
|
63
81
|
content: "./ ";
|
64
82
|
font-size: 24px;
|
@@ -90,7 +108,7 @@ section img {
|
|
90
108
|
h1, h2, h3, h4, h5, h6 {
|
91
109
|
font-weight: normal;
|
92
110
|
font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
|
93
|
-
color:
|
111
|
+
color: $header;
|
94
112
|
letter-spacing: -0.03em;
|
95
113
|
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
|
96
114
|
0 0 5px rgba(181, 232, 83, 0.1),
|
@@ -132,23 +150,13 @@ dt {
|
|
132
150
|
}
|
133
151
|
|
134
152
|
ul li {
|
135
|
-
list-style:
|
136
|
-
}
|
137
|
-
|
138
|
-
ul li:before {
|
139
|
-
content: ">>";
|
140
|
-
font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
|
141
|
-
font-size: 13px;
|
142
|
-
color: #b5e853;
|
143
|
-
margin-left: -37px;
|
144
|
-
margin-right: 21px;
|
145
|
-
line-height: 16px;
|
153
|
+
list-style-image:url('../images/bullet.png');
|
146
154
|
}
|
147
155
|
|
148
156
|
blockquote {
|
149
|
-
color:
|
157
|
+
color: $blockquote-color;
|
150
158
|
padding-left: 10px;
|
151
|
-
border-left: 1px dotted
|
159
|
+
border-left: 1px dotted $blockquote-border;
|
152
160
|
}
|
153
161
|
|
154
162
|
pre {
|
@@ -158,11 +166,20 @@ pre {
|
|
158
166
|
font-size: 16px;
|
159
167
|
color: #b5e853;
|
160
168
|
border-radius: 2px;
|
161
|
-
|
169
|
+
word-wrap: normal;
|
162
170
|
overflow: auto;
|
163
171
|
overflow-y: hidden;
|
164
172
|
}
|
165
173
|
|
174
|
+
code.highlighter-rouge {
|
175
|
+
background: rgba(0,0,0,0.9);
|
176
|
+
border: 1px solid rgba(255, 255, 255, 0.15);
|
177
|
+
padding: 0px 3px;
|
178
|
+
margin: 0px -3px;
|
179
|
+
color: #aa759f;
|
180
|
+
border-radius: 2px;
|
181
|
+
}
|
182
|
+
|
166
183
|
table {
|
167
184
|
width: 100%;
|
168
185
|
margin: 0 0 20px 0;
|
@@ -245,3 +262,7 @@ a {
|
|
245
262
|
.cf {
|
246
263
|
zoom:1;
|
247
264
|
}
|
265
|
+
|
266
|
+
#a-title {
|
267
|
+
text-decoration: none;
|
268
|
+
}
|
@@ -3,79 +3,85 @@
|
|
3
3
|
original base16 by Chris Kempson (https://github.com/chriskempson/base16)
|
4
4
|
*/
|
5
5
|
|
6
|
-
|
7
|
-
|
8
|
-
.highlight
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
}
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
6
|
+
@import "default_colors";
|
7
|
+
|
8
|
+
.highlight {
|
9
|
+
|
10
|
+
$plaintext: $alto !default;
|
11
|
+
$string: $chelsea-cucumber !default;
|
12
|
+
$literal: $chelsea-cucumber !default;
|
13
|
+
$keyword: $bouquet !default;
|
14
|
+
$error-foreground: $cod-grey !default;
|
15
|
+
$error-background: $apple-blossom !default;
|
16
|
+
$comment: $grey !default;
|
17
|
+
$preprocessor: $rajah !default;
|
18
|
+
$name-space: $rajah !default;
|
19
|
+
$name-attribute: $hippie-blue !default;
|
20
|
+
$operator: $rajah !default;
|
21
|
+
$keyword-type: $raw-sienna !default;
|
22
|
+
$regex: $gulf-stream !default;
|
23
|
+
$string-escape: $potters-clay !default;
|
24
|
+
$deleted: $apple-blossom !default;
|
25
|
+
$header: $hippie-blue !default;
|
26
|
+
|
27
|
+
color: $plaintext;
|
28
|
+
|
29
|
+
table td { padding: 5px; }
|
30
|
+
table pre { margin: 0; }
|
31
|
+
.w {
|
32
|
+
color: $plaintext;
|
33
|
+
}
|
34
|
+
.err {
|
35
|
+
color: $error-foreground;
|
36
|
+
background-color: $error-background;
|
37
|
+
}
|
38
|
+
.c, .cd, .cm, .c1, .cs {
|
39
|
+
color: $comment;
|
40
|
+
}
|
41
|
+
.cp {
|
42
|
+
color: $preprocessor;
|
43
|
+
}
|
44
|
+
.o, .ow {
|
45
|
+
color: $operator;
|
46
|
+
}
|
47
|
+
.p, .pi {
|
48
|
+
color: $plaintext;
|
49
|
+
}
|
50
|
+
.gi {
|
51
|
+
color: $string;
|
52
|
+
}
|
53
|
+
.gd {
|
54
|
+
color: $deleted;
|
55
|
+
}
|
56
|
+
.gh {
|
57
|
+
color: $header;
|
58
|
+
font-weight: bold;
|
59
|
+
}
|
60
|
+
.k, .kn, .kp, .kr, .kv {
|
61
|
+
color: $keyword;
|
62
|
+
}
|
63
|
+
.kc, .kt, .kd {
|
64
|
+
color: $keyword-type;
|
65
|
+
}
|
66
|
+
.s, .sb, .sc, .sd, .s2, .sh, .sx, .s1 {
|
67
|
+
color: $string;
|
68
|
+
}
|
69
|
+
.sr {
|
70
|
+
color: $regex;
|
71
|
+
}
|
72
|
+
.si, .se {
|
73
|
+
color: $string-escape;
|
74
|
+
}
|
75
|
+
.nt, .nn, .nc, .no{
|
76
|
+
color: $name-space;
|
77
|
+
}
|
78
|
+
.na {
|
79
|
+
color: $name-attribute;
|
80
|
+
}
|
81
|
+
.m, .mf, .mh, .mi, .il, .mo, .mb, .mx {
|
82
|
+
color: $literal;
|
83
|
+
}
|
84
|
+
.ss {
|
85
|
+
color: $string;
|
86
|
+
}
|
81
87
|
}
|
Binary file
|
metadata
CHANGED
@@ -1,31 +1,93 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-hacker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Costello
|
8
8
|
- GitHub, Inc.
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2021-07-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ">"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '3.5'
|
21
|
+
- - "<"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '5.0'
|
24
|
+
type: :runtime
|
25
|
+
prerelease: false
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
requirements:
|
28
|
+
- - ">"
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: '3.5'
|
31
|
+
- - "<"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '5.0'
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: jekyll-seo-tag
|
16
36
|
requirement: !ruby/object:Gem::Requirement
|
17
37
|
requirements:
|
18
38
|
- - "~>"
|
19
39
|
- !ruby/object:Gem::Version
|
20
|
-
version: '
|
40
|
+
version: '2.0'
|
21
41
|
type: :runtime
|
22
42
|
prerelease: false
|
23
43
|
version_requirements: !ruby/object:Gem::Requirement
|
24
44
|
requirements:
|
25
45
|
- - "~>"
|
26
46
|
- !ruby/object:Gem::Version
|
27
|
-
version: '
|
28
|
-
|
47
|
+
version: '2.0'
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: html-proofer
|
50
|
+
requirement: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
type: :development
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: rubocop-github
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.16'
|
69
|
+
type: :development
|
70
|
+
prerelease: false
|
71
|
+
version_requirements: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.16'
|
76
|
+
- !ruby/object:Gem::Dependency
|
77
|
+
name: w3c_validators
|
78
|
+
requirement: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '1.3'
|
83
|
+
type: :development
|
84
|
+
prerelease: false
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1.3'
|
90
|
+
description:
|
29
91
|
email:
|
30
92
|
- opensource+jekyll-theme-hacker@github.com
|
31
93
|
executables: []
|
@@ -34,17 +96,24 @@ extra_rdoc_files: []
|
|
34
96
|
files:
|
35
97
|
- LICENSE
|
36
98
|
- README.md
|
99
|
+
- _includes/head-custom-google-analytics.html
|
100
|
+
- _includes/head-custom-theme-colors.html
|
101
|
+
- _includes/head-custom.html
|
37
102
|
- _layouts/default.html
|
103
|
+
- _layouts/post.html
|
104
|
+
- _sass/_default_colors.scss
|
105
|
+
- _sass/hacker.scss
|
38
106
|
- _sass/jekyll-theme-hacker.scss
|
39
107
|
- _sass/rouge-base16-dark.scss
|
40
108
|
- assets/css/style.scss
|
41
109
|
- assets/images/bkg.png
|
42
110
|
- assets/images/blacktocat.png
|
111
|
+
- assets/images/bullet.png
|
43
112
|
homepage: https://github.com/pages-themes/hacker
|
44
113
|
licenses:
|
45
114
|
- CC0-1.0
|
46
115
|
metadata: {}
|
47
|
-
post_install_message:
|
116
|
+
post_install_message:
|
48
117
|
rdoc_options: []
|
49
118
|
require_paths:
|
50
119
|
- lib
|
@@ -52,16 +121,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
52
121
|
requirements:
|
53
122
|
- - ">="
|
54
123
|
- !ruby/object:Gem::Version
|
55
|
-
version:
|
124
|
+
version: 2.4.0
|
56
125
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
126
|
requirements:
|
58
127
|
- - ">="
|
59
128
|
- !ruby/object:Gem::Version
|
60
129
|
version: '0'
|
61
130
|
requirements: []
|
62
|
-
|
63
|
-
|
64
|
-
signing_key:
|
131
|
+
rubygems_version: 3.2.15
|
132
|
+
signing_key:
|
65
133
|
specification_version: 4
|
66
134
|
summary: Hacker is a Jekyll theme for GitHub Pages
|
67
135
|
test_files: []
|