jekyll-oceanic 1.0.3 → 1.1.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 +4 -4
- data/README.md +0 -1
- data/_config.yml +6 -6
- data/_includes/bloglist.html +1 -1
- data/_sass/skins/black.scss +1 -0
- data/_sass/skins/default.scss +5 -0
- data/_sass/theme.scss +10 -3
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db54acfac3aa333009bc0c50ccced5177116da02c51b1823c2f1cfdb94dad0ee
|
|
4
|
+
data.tar.gz: df70cfae0a8ffcd4908ee9d5c0a95ff051e411ebd04bec333af4828c19ba0e2d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aeb3030d6322269c016c91b995e6a04fbcbaf600d4aad917b0c85560523dc75dc8c44007d81c9ba19e0b0628cd0d54be9270598502baf54f0dc42320860b58b5
|
|
7
|
+
data.tar.gz: e3a02e5ba3d12481fd857ed04aa815d1f83728f5945108367fbb62cc398adc7fc95248f660cffc98b047d3cf990094040b15950952ea5e4f0ac7bf64d3870b84
|
data/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# Oceanic - A Minimalist, Blue Theme For Jekyll
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/rb/jekyll-oceanic)
|
|
4
|
-
[](https://travis-ci.org/karlnicoll/jekyll-oceanic)
|
|
5
4
|
|
|
6
5
|
Oceanic is intended as a simple theme for Jekyll websites, with a main focus
|
|
7
6
|
on blogs.
|
data/_config.yml
CHANGED
|
@@ -36,12 +36,12 @@ oceanic:
|
|
|
36
36
|
# Social media links. If the link is specified, an icon is shown in the
|
|
37
37
|
# header as a link.
|
|
38
38
|
social:
|
|
39
|
-
facebook: https://www.facebook.com/jekyll.user
|
|
40
|
-
github: https://www.github.com/jekyll.user
|
|
41
|
-
linkedin: https://www.linkedin.com/in/jekylluser
|
|
42
|
-
stackoverflow: https://stackoverflow.com/users/00000/stack-user
|
|
43
|
-
steam: https://steamcommunity.com/id/jekylluser/
|
|
44
|
-
twitter: https://www.twitter.com/jekylluser
|
|
39
|
+
facebook: # https://www.facebook.com/jekyll.user
|
|
40
|
+
github: # https://www.github.com/jekyll.user
|
|
41
|
+
linkedin: # https://www.linkedin.com/in/jekylluser
|
|
42
|
+
stackoverflow: # https://stackoverflow.com/users/00000/stack-user
|
|
43
|
+
steam: # https://steamcommunity.com/id/jekylluser/
|
|
44
|
+
twitter: # https://www.twitter.com/jekylluser
|
|
45
45
|
|
|
46
46
|
# If specified, sets the number of blog entries to display from the
|
|
47
47
|
# homepage. More blog entries can be found by navigating to a
|
data/_includes/bloglist.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<ol class="blog-entries">
|
|
4
4
|
{%- for post in include.postlist -%}
|
|
5
5
|
<li role="article">
|
|
6
|
-
<
|
|
6
|
+
<h2><a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a></h2>
|
|
7
7
|
<aside>Published: {{ post.date | date: date_format }}</aside>
|
|
8
8
|
{{ post.excerpt }}
|
|
9
9
|
<a href="{{ post.url | relative_url }}">Continue reading...</a></h3>
|
data/_sass/skins/black.scss
CHANGED
data/_sass/skins/default.scss
CHANGED
|
@@ -26,6 +26,11 @@ $site-title-font: 'Merriweather', serif;
|
|
|
26
26
|
*/
|
|
27
27
|
$header-font: "Lato", sans-serif;
|
|
28
28
|
|
|
29
|
+
/*
|
|
30
|
+
* Font used in headings/sub-headings.
|
|
31
|
+
*/
|
|
32
|
+
$heading-font: 'Merriweather', serif;
|
|
33
|
+
|
|
29
34
|
/*
|
|
30
35
|
* Font used in unimportant added information (such as the dates on
|
|
31
36
|
* blog posts, image captions, etc).
|
data/_sass/theme.scss
CHANGED
|
@@ -23,7 +23,7 @@ body {
|
|
|
23
23
|
/* Headers */
|
|
24
24
|
h1, h2, h3, h4, h5, h6 {
|
|
25
25
|
color: $heading-color;
|
|
26
|
-
font-family: $
|
|
26
|
+
font-family: $heading-font;
|
|
27
27
|
}
|
|
28
28
|
h1 {
|
|
29
29
|
border-bottom: 1px solid $title-underline-color;
|
|
@@ -33,7 +33,12 @@ h1 {
|
|
|
33
33
|
text-align: center;
|
|
34
34
|
}
|
|
35
35
|
h2 {
|
|
36
|
-
|
|
36
|
+
font-size:20pt;
|
|
37
|
+
margin-top:1em;
|
|
38
|
+
}
|
|
39
|
+
h3 {
|
|
40
|
+
font-size:18pt;
|
|
41
|
+
margin-top:1em;
|
|
37
42
|
}
|
|
38
43
|
|
|
39
44
|
/* Hyperlinks */
|
|
@@ -226,10 +231,12 @@ ol.blog-entries > li:first-child {
|
|
|
226
231
|
border-top: none;
|
|
227
232
|
}
|
|
228
233
|
|
|
234
|
+
ol.blog-entries h2,
|
|
229
235
|
ol.blog-entries h3 {
|
|
230
|
-
margin-bottom: 0.
|
|
236
|
+
margin-bottom: 0.3em;
|
|
231
237
|
}
|
|
232
238
|
|
|
239
|
+
ol.blog-entries h2 a,
|
|
233
240
|
ol.blog-entries h3 a {
|
|
234
241
|
color: $heading-color;
|
|
235
242
|
text-decoration: none;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-oceanic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karl Nicoll
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -134,7 +134,7 @@ metadata:
|
|
|
134
134
|
bug_tracker_uri: https://github.com/karlnicoll/jekyll-oceanic/issues
|
|
135
135
|
documentation_uri: https://github.com/karlnicoll/jekyll-oceanic/blob/master/README.md
|
|
136
136
|
source_code_uri: https://github.com/karlnicoll/jekyll-oceanic
|
|
137
|
-
post_install_message:
|
|
137
|
+
post_install_message:
|
|
138
138
|
rdoc_options: []
|
|
139
139
|
require_paths:
|
|
140
140
|
- lib
|
|
@@ -149,8 +149,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
149
149
|
- !ruby/object:Gem::Version
|
|
150
150
|
version: '0'
|
|
151
151
|
requirements: []
|
|
152
|
-
rubygems_version: 3.
|
|
153
|
-
signing_key:
|
|
152
|
+
rubygems_version: 3.3.8
|
|
153
|
+
signing_key:
|
|
154
154
|
specification_version: 4
|
|
155
155
|
summary: A modern, blue, template for Jekyll blogs.
|
|
156
156
|
test_files: []
|