jekyll-theme-8bit 0.1.0 → 0.6.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 501c98c641e933fca87fe93c26e61c89b31b0b21d087ff92a3c82ccf54c1a3c6
4
- data.tar.gz: 05ee96788f27aa2e4740b5d4890b737cfd2fd3d026c7cc5c7fc80fec92284c38
3
+ metadata.gz: 71fb42d90f425d2d8f7cfab6f5772133c1d28037b2381d4e8e37f615cdc874fa
4
+ data.tar.gz: bc86f1617c2fdd1e4bf89d0f51942affb26402d3152c9d3cc2727392e50580dc
5
5
  SHA512:
6
- metadata.gz: 687538eccdb5ceb77aa4051ced0189aac8fcbe3847eb5fa7ec74f05faf47115ce65ad30ec3ceedc51eeaa89ba48d12caccced89b131737c662f8e109f3170bb9
7
- data.tar.gz: 709f450f607b6b4c062d7892ca7c99a24130361fa5b17d5ecbfe4c81c500bf4f9aa955ceb7a09e80426770e403ac75d50a5cfd4989615ec1380567ed5eecf7a6
6
+ metadata.gz: 7afcace661a786417775299bb27db5e2f15b1eb2c0d2850e00f7c780f81bac45194335593335274b9a08c523e211bbb01121cb86cd21dfffc096a7802cceb816
7
+ data.tar.gz: 90ade060cb8ded43cfca1e2c2086f84bece1838a028a3d8f971ac560b6fb1e067058dcf7c3e80663282fbc69f001d8e9bc9195d3c18941fe78b1a7aa343aff1c
data/README.md CHANGED
@@ -1,9 +1,13 @@
1
1
  # jekyll-theme-8bit
2
2
 
3
- [![Build Status](https://travis-ci.org/julianolf/jekyll-theme-8bit.svg?branch=master)](https://travis-ci.org/julianolf/jekyll-theme-8bit)
3
+ [![Build Status](https://travis-ci.org/julianolf/jekyll-theme-8bit.svg?branch=master)](https://travis-ci.org/julianolf/jekyll-theme-8bit) [![Gem Version](https://badge.fury.io/rb/jekyll-theme-8bit.svg)](https://badge.fury.io/rb/jekyll-theme-8bit)
4
4
 
5
5
  A Jekyll theme inspired by classic 8bit games.
6
6
 
7
+ ## Preview
8
+
9
+ You can see how the theme looks like [here](http://julianofernandes.com.br/jekyll-theme-8bit/).
10
+
7
11
  ## Installation
8
12
 
9
13
  Add this line to your Jekyll site's `Gemfile`:
@@ -26,9 +30,107 @@ Or install it yourself as:
26
30
 
27
31
  $ gem install jekyll-theme-8bit
28
32
 
33
+ ## Contents
34
+
35
+ **jekyll-theme-8bit** has been scaffolded by the `jekyll new-theme` command and therefore has all the necessary files and directories to have a new Jekyll site up and running with zero-configuration.
36
+
37
+ ### Layouts
38
+
39
+ Refers to files within the `_layouts` directory, that define the markup for your theme.
40
+
41
+ - `default.html` — The base layout that lays the foundation for subsequent layouts. The derived layouts inject their contents into this file at the line that says `{{ content }}` and are linked to this file via [FrontMatter](https://jekyllrb.com/docs/frontmatter/) declaration `layout: default`.
42
+ - `post.html` — The layout for your posts.
43
+
44
+ ### Includes
45
+
46
+ Refers to snippets of code within the `_includes` directory that can be inserted in multiple layouts (and another include-file as well) within the same theme-gem.
47
+
48
+ - `downloads.html` — Insert download buttons when using the theme on a project with GitHub Pages enabled and the `show_downloads` variable set to *true* in `_config.yml`.
49
+ - `footer.html` — Defines the site's footer section.
50
+ - `fork-me.html` — Shows a *"Fork me on GitHub"* link when using the theme on a project with GitHub Pages enabled.
51
+ - `google-analytics.html` — Inserts Google Analytics module (active only in production environment).
52
+ - `head.html` &mdash; Code-block that defines the `<head></head>` in _default_ layout.
53
+ - `header.html` &mdash; Defines the site's main header section. By default, pages with a defined `title` attribute will have links displayed here.
54
+ - `social.html` &mdash; Icons for social networks. Wich icons will be visible depends on what was defined in `_config.yml`.
55
+
56
+ ### SASS
57
+
58
+ Refers to `.scss` files within the `_sass` directory that define the theme's styles.
59
+
60
+ - `fonts.scss` &mdash; Defines font faces used by 8bit's theme.
61
+ - `jekyll-theme-8bit.scss` &mdash; The core file imported by preprocessed `assets/css/style.scss`, it defines the defaults for the theme, layout, etc, and also further imports sass partials to supplement itself.
62
+ - `rouge-github.scss` &mdash; Defines the styles for syntax-highlighting.
63
+
64
+ ### Assets
65
+
66
+ Refers to various asset files within the `assets` directory.
67
+
68
+ - `css/style.scss` &mdash; Imports sass files from within the `_sass` directory. It is what gets processed into the theme's main stylesheet `main.css` called by `_layouts/default.html` via `_includes/head.html`.
69
+ - `fonts/Press-Start-2P/` &mdash; The directory contains font files for *ttf*, *woff* and *woff2* formats.
70
+ - `js/scale-fix.js` &mdash; Zooming scale fix for iPhone.
71
+
72
+ This directory can include sub-directories to manage assets of similar type (`img`, `fonts`, `svg`), and will be copied over as is, to the final transformed site directory.
73
+
74
+ ### Plugins
75
+
76
+ **jekyll-theme-8bit** comes with two plugins preinstalled.
77
+
78
+ - [`jekyll-paginate`](https://jekyllrb.com/docs/pagination/) &mdash; Allows break the main listing of posts up into smaller lists and display them over multiple pages. See [documentation](https://jekyllrb.com/docs/pagination/) for more details.
79
+ - [`jekyll-seo-tag`](https://github.com/jekyll/jekyll-seo-tag) &mdash; Ensure your website gets the most useful meta tags. See [usage](https://github.com/jekyll/jekyll-seo-tag/blob/master/docs/usage.md) to know how to set it up.
80
+
29
81
  ## Usage
30
82
 
31
- TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
83
+ ### Customization
84
+
85
+ For details on how to customize the layout, style and configurations head to [Jekyll](https://jekyllrb.com/docs/themes/) documentation, it has detailed information about everything you might need.
86
+
87
+ So far 8bit theme specific customizations are only available through entries in `_config.yml`.
88
+
89
+ #### Custom logo
90
+
91
+ Set **logo** entry in `_config.yml`. It accepts an image path like `assets/img/logo.png` or one of the available Nintendo characters provided by [NES.css](https://nostalgic-css.github.io/NES.css/): `nes-mario`, `nes-ash`, `nes-pokeball`, `nes-bulbasaur`, `nes-charmander`, `nes-squirtle`, `nes-kirby`.
92
+
93
+ **PS**.: Nintendo owns the copyright of these characters. Please comply with the Nintendo guidelines and laws of the applicable jurisdiction.
94
+
95
+ #### Showing download buttons
96
+
97
+ If you’re publishing on GitHub Pages for a project you can enable the download buttons by just setting `show_downloads: true` in `_config.yml`.
98
+
99
+ #### Social networks
100
+
101
+ You can show links for accounts you have on some of the most popular social networks. See the example below with the complete list of available networks.
102
+
103
+ ```yaml
104
+ # file: _config.yml
105
+
106
+ social:
107
+ twitter: https://twitter.com/username
108
+ facebook: https://facebook.com/username
109
+ github: https://github.com/username
110
+ youtube: https://youtube.com/channel/ID
111
+ google: https://plus.google.com/username
112
+ medium: https://medium.com/@username
113
+ twitch: https://twitch.com/username
114
+ reddit: https://www.reddit.com/user/username
115
+ whatsapp: tel:+5541999999999
116
+ gmail: mailto:username@domain.net
117
+ linkedin: https://www.linkedin.com/in/username
118
+ ```
119
+
120
+ #### Comments
121
+
122
+ Comments feature is provided by an integration between Jekyll and Disqus, so if you want to have a comments section below each post you will need a Disqus account.
123
+
124
+ If you already have an account all you need to do is add the following entries to your `_config.yml`:
125
+
126
+ ```yaml
127
+ disqus:
128
+ shortname: your-sites-shortname
129
+ ```
130
+
131
+ In case you still don't have an account take a look at [Disqus](https://disqus.com)' page for details on how to create and configure an account.
132
+
133
+ Comments are enabled by default but if you want to disable them for one particular post you can by just adding `comments: false` to the post's YAML Front Matter.
32
134
 
33
135
  ## Contributing
34
136
 
@@ -47,3 +149,6 @@ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-t
47
149
 
48
150
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
49
151
 
152
+ ## Credits
153
+
154
+ - 8bit style by [NES.css](https://nostalgic-css.github.io/NES.css/)
@@ -0,0 +1,17 @@
1
+ {% if page.comments != false and jekyll.environment == "production" %}
2
+ <div id="disqus_thread"></div>
3
+ <script>
4
+ var disqus_config = function () {
5
+ this.page.url = '{{ page.url | absolute_url }}';
6
+ this.page.identifier = '{{ page.url | absolute_url }}';
7
+ };
8
+
9
+ (function() {
10
+ var d = document, s = d.createElement('script');
11
+ s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
12
+ s.setAttribute('data-timestamp', +new Date());
13
+ (d.head || d.body).appendChild(s);
14
+ })();
15
+ </script>
16
+ <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
17
+ {% endif %}
@@ -3,7 +3,7 @@
3
3
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
4
  <meta name="viewport" content="width=device-width, initial-scale=1">
5
5
  {% seo %}
6
- <link rel="stylesheet" href="https://unpkg.com/nes.css/css/nes.min.css" />
6
+ <link rel="stylesheet" href="https://unpkg.com/nes.css@2.3.0/css/nes.min.css" />
7
7
  <link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
8
8
  <!--[if lt IE 9]>
9
9
  <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  layout: default
3
+ comments: true
3
4
  ---
4
5
 
5
6
  <small class="post-info">{{ page.date | date: "%B %-d, %Y" }}</small>
@@ -9,3 +10,6 @@ layout: default
9
10
  {% if page.tags %}
10
11
  <small class="post-info">Tags: <b>{{ page.tags | join: "</b> <b>" }}</b></small>
11
12
  {% endif %}
13
+ {% if site.disqus.shortname %}
14
+ {% include comments.html %}
15
+ {% endif %}
@@ -118,25 +118,20 @@ footer {
118
118
  bottom: 50px;
119
119
  }
120
120
 
121
- .nes-container.blue-border::after {
122
- box-shadow:
123
- 0 -4px #3fbfff, 0 -8px #1a80b2, 4px 0 #1a80b2, 4px -4px #1a80b2,
124
- 8px 0 #3fbfff, 0 4px #1a80b2, 0 8px #3fbfff, -4px 0 #3fbfff,
125
- -4px 4px #1a80b2, -8px 0 #1a80b2, -4px -4px #1a80b2, 4px 4px #3fbfff;
121
+ .nes-container.is-rounded {
122
+ margin-top: 8px;
126
123
  }
127
124
 
128
- .nes-container.green-border::after {
129
- box-shadow:
130
- 0 -4px #01b801, 0 -8px #007800, 4px 0 #007800, 4px -4px #007800,
131
- 8px 0 #01b801, 0 4px #007800, 0 8px #01b801, -4px 0 #01b801,
132
- -4px 4px #007800, -8px 0 #007800, -4px -4px #007800, 4px 4px #01b801;
125
+ .nes-container.blue-border {
126
+ border-image-source: url('data:image/svg+xml;utf8,<?xml version="1.0" encoding="UTF-8" ?><svg version="1.1" width="8" height="8" xmlns="http://www.w3.org/2000/svg"><path d="M3 1 h1 v1 h-1 z M4 1 h1 v1 h-1 z M2 2 h1 v1 h-1 z M5 2 h1 v1 h-1 z M1 3 h1 v1 h-1 z M6 3 h1 v1 h-1 z M1 4 h1 v1 h-1 z M6 4 h1 v1 h-1 z M2 5 h1 v1 h-1 z M5 5 h1 v1 h-1 z M3 6 h1 v1 h-1 z M4 6 h1 v1 h-1 z" fill="rgb(26,128,178)" /></svg>');
133
127
  }
134
128
 
135
- .nes-container.brown-border::after {
136
- box-shadow:
137
- 0 -4px #ffa347, 0 -8px #8b1600, 4px 0 #8b1600, 4px -4px #8b1600,
138
- 8px 0 #ffa347, 0 4px #8b1600, 0 8px #ffa347, -4px 0 #ffa347,
139
- -4px 4px #8b1600, -8px 0 #8b1600, -4px -4px #8b1600, 4px 4px #ffa347;
129
+ .nes-container.green-border {
130
+ border-image-source: url('data:image/svg+xml;utf8,<?xml version="1.0" encoding="UTF-8" ?><svg version="1.1" width="8" height="8" xmlns="http://www.w3.org/2000/svg"><path d="M3 1 h1 v1 h-1 z M4 1 h1 v1 h-1 z M2 2 h1 v1 h-1 z M5 2 h1 v1 h-1 z M1 3 h1 v1 h-1 z M6 3 h1 v1 h-1 z M1 4 h1 v1 h-1 z M6 4 h1 v1 h-1 z M2 5 h1 v1 h-1 z M5 5 h1 v1 h-1 z M3 6 h1 v1 h-1 z M4 6 h1 v1 h-1 z" fill="rgb(0,120,0)" /></svg>');
131
+ }
132
+
133
+ .nes-container.brown-border {
134
+ border-image-source: url('data:image/svg+xml;utf8,<?xml version="1.0" encoding="UTF-8" ?><svg version="1.1" width="8" height="8" xmlns="http://www.w3.org/2000/svg"><path d="M3 1 h1 v1 h-1 z M4 1 h1 v1 h-1 z M2 2 h1 v1 h-1 z M5 2 h1 v1 h-1 z M1 3 h1 v1 h-1 z M6 3 h1 v1 h-1 z M1 4 h1 v1 h-1 z M6 4 h1 v1 h-1 z M2 5 h1 v1 h-1 z M5 5 h1 v1 h-1 z M3 6 h1 v1 h-1 z M4 6 h1 v1 h-1 z" fill="rgb(139,22,0)" /></svg>');
140
135
  }
141
136
 
142
137
  .nes-container.header {
@@ -185,18 +180,21 @@ footer {
185
180
  .nes-container.downloads {
186
181
  font-family: 'Press Start 2P', Helvetica, Arial, sans-serif;
187
182
  background-color: #5adb57;
188
- margin-top: 26px;
183
+ margin-top: 12px;
189
184
  }
190
185
 
191
186
  .nes-btn.is-file {
192
187
  color: #fafafa;
193
188
  background-color: #01b801;
189
+ }
190
+ .nes-btn.is-file::after {
194
191
  box-shadow: inset -4px -4px #007800;
195
192
  }
196
-
197
193
  .nes-btn.is-file:hover {
198
194
  background-color: #5adb57;
199
- box-shadow: inset -4px -4px #01b801;
195
+ }
196
+ .nes-btn.is-file:hover::after {
197
+ box-shadow: inset -6px -6px #01b801;
200
198
  }
201
199
 
202
200
  .nes-list.is-disc li::before,
metadata CHANGED
@@ -1,43 +1,49 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-8bit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juliano Fernandes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-02-14 00:00:00.000000000 Z
11
+ date: 2020-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 3.8.5
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 4.2.0
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: 3.8.5
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 4.2.0
27
33
  - !ruby/object:Gem::Dependency
28
- name: jekyll-paginate-v2
34
+ name: jekyll-paginate
29
35
  requirement: !ruby/object:Gem::Requirement
30
36
  requirements:
31
37
  - - "~>"
32
38
  - !ruby/object:Gem::Version
33
- version: '2.1'
39
+ version: 1.1.0
34
40
  type: :runtime
35
41
  prerelease: false
36
42
  version_requirements: !ruby/object:Gem::Requirement
37
43
  requirements:
38
44
  - - "~>"
39
45
  - !ruby/object:Gem::Version
40
- version: '2.1'
46
+ version: 1.1.0
41
47
  - !ruby/object:Gem::Dependency
42
48
  name: jekyll-seo-tag
43
49
  requirement: !ruby/object:Gem::Requirement
@@ -58,14 +64,14 @@ dependencies:
58
64
  requirements:
59
65
  - - "~>"
60
66
  - !ruby/object:Gem::Version
61
- version: 2.0.1
67
+ version: 2.2.0
62
68
  type: :development
63
69
  prerelease: false
64
70
  version_requirements: !ruby/object:Gem::Requirement
65
71
  requirements:
66
72
  - - "~>"
67
73
  - !ruby/object:Gem::Version
68
- version: 2.0.1
74
+ version: 2.2.0
69
75
  - !ruby/object:Gem::Dependency
70
76
  name: html-proofer
71
77
  requirement: !ruby/object:Gem::Requirement
@@ -86,28 +92,28 @@ dependencies:
86
92
  requirements:
87
93
  - - "~>"
88
94
  - !ruby/object:Gem::Version
89
- version: 12.3.2
95
+ version: 13.0.0
90
96
  type: :development
91
97
  prerelease: false
92
98
  version_requirements: !ruby/object:Gem::Requirement
93
99
  requirements:
94
100
  - - "~>"
95
101
  - !ruby/object:Gem::Version
96
- version: 12.3.2
102
+ version: 13.0.0
97
103
  - !ruby/object:Gem::Dependency
98
104
  name: rubocop
99
105
  requirement: !ruby/object:Gem::Requirement
100
106
  requirements:
101
107
  - - "~>"
102
108
  - !ruby/object:Gem::Version
103
- version: '0.62'
109
+ version: '1.6'
104
110
  type: :development
105
111
  prerelease: false
106
112
  version_requirements: !ruby/object:Gem::Requirement
107
113
  requirements:
108
114
  - - "~>"
109
115
  - !ruby/object:Gem::Version
110
- version: '0.62'
116
+ version: '1.6'
111
117
  - !ruby/object:Gem::Dependency
112
118
  name: w3c_validators
113
119
  requirement: !ruby/object:Gem::Requirement
@@ -131,6 +137,7 @@ extra_rdoc_files: []
131
137
  files:
132
138
  - LICENSE.txt
133
139
  - README.md
140
+ - _includes/comments.html
134
141
  - _includes/downloads.html
135
142
  - _includes/footer.html
136
143
  - _includes/fork-me.html
@@ -161,14 +168,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
161
168
  requirements:
162
169
  - - ">="
163
170
  - !ruby/object:Gem::Version
164
- version: '0'
171
+ version: '2.6'
165
172
  required_rubygems_version: !ruby/object:Gem::Requirement
166
173
  requirements:
167
174
  - - ">="
168
175
  - !ruby/object:Gem::Version
169
176
  version: '0'
170
177
  requirements: []
171
- rubygems_version: 3.0.1
178
+ rubygems_version: 3.1.4
172
179
  signing_key:
173
180
  specification_version: 4
174
181
  summary: A Jekyll theme inspired by classic 8bit games.