creek-jekyll-theme 1.4.0 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_config.yml +6 -6
- data/_includes/author-profile.html +2 -4
- data/_includes/figure +7 -4
- data/_sass/minimal-mistakes/skins/_creek.scss +35 -0
- data/assets/images/logo_drop_shadow.png +0 -0
- metadata +24 -9
- data/assets/images/creek-logo.png +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9132cdf63e71150d4e342c7506677fcf7b4aa1baad28c91e90434c435e5729c3
|
4
|
+
data.tar.gz: af894db7e5b0ab0077c88a82c4e749565ba7a541a1752d9397e6111664bf2e46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12b7f2960e4630befe7084aa2c320181f9fe085e00a001a75fa6b1bf142f79e2fc46ade53c340158ef5a8298738ae1e98500481a4b1c9b9773fb24e8cef059ff
|
7
|
+
data.tar.gz: 47a81e25539f1a2d7857a62fc1f9ced79675c59ece2d2ec73f61320c6cf7c97c0f19858736ab3c5a3174b4ec804de0a418089e76e906e795a745621f5ad39822
|
data/_config.yml
CHANGED
@@ -9,11 +9,11 @@
|
|
9
9
|
# Requires: https://github.com/github/pages-gem/pull/855
|
10
10
|
|
11
11
|
# remote_theme : "creek-service/creek-service.github.io"
|
12
|
-
minimal_mistakes_skin : "
|
12
|
+
minimal_mistakes_skin : "creek" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
|
13
13
|
|
14
14
|
# Site Settings
|
15
15
|
locale : "en-US"
|
16
|
-
title : "Creek Service"
|
16
|
+
title : "Creek Service, write business logic, not boilerplate"
|
17
17
|
title_separator : "-"
|
18
18
|
name : "Creek Service"
|
19
19
|
description : "Quickly build & test an ecosystem of JVM based microservices, using Kafka clients, Kafka Streams and more." # Used in SEO
|
@@ -21,7 +21,7 @@ url : "https://www.creekservice.org"
|
|
21
21
|
# baseurl : # the subpath of your site, e.g. "/blog"
|
22
22
|
repository : # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes"
|
23
23
|
teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png"
|
24
|
-
logo : "/assets/images/
|
24
|
+
logo : "/assets/images/logo_drop_shadow.png"
|
25
25
|
masthead_title : "Write business logic" # overrides the website title displayed in the masthead, use " " for no title
|
26
26
|
subtitle : "Not boilerplate" # custom site tagline that appears below site title in masthead
|
27
27
|
breadcrumbs : false # true, false (default)
|
@@ -83,7 +83,7 @@ facebook:
|
|
83
83
|
username :
|
84
84
|
app_id :
|
85
85
|
publisher :
|
86
|
-
og_image : "/assets/images/
|
86
|
+
og_image : "/assets/images/logo_drop_shadow.png" # Open Graph/Twitter default site image
|
87
87
|
# For specifying social profiles
|
88
88
|
# - https://developers.google.com/structured-data/customize/social-profiles
|
89
89
|
social:
|
@@ -263,10 +263,10 @@ whitelist:
|
|
263
263
|
# - <base_path>/my-awesome-category/index.html ~> path: /
|
264
264
|
category_archive:
|
265
265
|
type: liquid
|
266
|
-
path: /categories/
|
266
|
+
path: /posts/categories/
|
267
267
|
tag_archive:
|
268
268
|
type: liquid
|
269
|
-
path: /tags/
|
269
|
+
path: /posts/tags/
|
270
270
|
# https://github.com/jekyll/jekyll-archives
|
271
271
|
# jekyll-archives:
|
272
272
|
# enabled:
|
@@ -5,15 +5,13 @@
|
|
5
5
|
|
6
6
|
{% if author.avatar %}
|
7
7
|
<div class="author__avatar">
|
8
|
-
<
|
9
|
-
<img src="{{ author.avatar | relative_url }}" alt="{{ author.name }}" itemprop="image" class="u-photo">
|
10
|
-
</a>
|
8
|
+
<img src="{{ author.avatar | relative_url }}" alt="{{ author.name }}" itemprop="image" class="u-photo">
|
11
9
|
</div>
|
12
10
|
{% endif %}
|
13
11
|
|
14
12
|
<div class="author__content">
|
15
13
|
<h3 class="author__name p-name" itemprop="name">
|
16
|
-
|
14
|
+
{{ author.name }}
|
17
15
|
</h3>
|
18
16
|
{% if author.bio %}
|
19
17
|
<div class="author__bio p-note" itemprop="description">
|
data/_includes/figure
CHANGED
@@ -1,9 +1,12 @@
|
|
1
1
|
<figure class="{{ include.class }}">
|
2
|
+
<a class="image-popup" href="{{ include.image_path | relative_url }}" title="{{ include.caption }}">
|
2
3
|
<img src="{{ include.image_path | relative_url }}"
|
3
|
-
|
4
|
+
alt="{{ include.alt }}"
|
5
|
+
style="max-width: {{ include.max-width | default: "100%" }};" />
|
6
|
+
</a>
|
4
7
|
{%- if include.caption -%}
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
+
<figcaption>
|
9
|
+
{{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}
|
10
|
+
</figcaption>
|
8
11
|
{%- endif -%}
|
9
12
|
</figure>
|
@@ -0,0 +1,35 @@
|
|
1
|
+
/* ==========================================================================
|
2
|
+
Creek skin
|
3
|
+
========================================================================== */
|
4
|
+
|
5
|
+
/* Colors */
|
6
|
+
$lightest-blue: #8ECAE6 !default;
|
7
|
+
$light-blue: #219EBC !default;
|
8
|
+
$dark-blue: #203047 !default;
|
9
|
+
$yellow: #FFB703 !default;
|
10
|
+
$orange: #FB8500 !default;
|
11
|
+
|
12
|
+
$primary-color: $light-blue !default;
|
13
|
+
$success-color: #27ae60 !default;
|
14
|
+
$warning-color: $orange !default;
|
15
|
+
$danger-color : #c0392b !default;
|
16
|
+
$info-color : $lightest-blue !default;
|
17
|
+
|
18
|
+
$text-color: $dark-blue !default;
|
19
|
+
$muted-text-color: $yellow !default;
|
20
|
+
$border-color: mix(#fff, #393e46, 75%) !default;
|
21
|
+
$footer-background-color: $primary-color !default;
|
22
|
+
$link-color : $orange !default;
|
23
|
+
$link-color-hover : mix(#000, $link-color, 25%) !default;
|
24
|
+
$link-color-visited : mix(#fff, $link-color, 25%) !default;
|
25
|
+
$masthead-link-color: $text-color !default;
|
26
|
+
$masthead-link-color-hover: $text-color !default;
|
27
|
+
$navicon-link-color-hover: mix(#fff, $text-color, 80%) !default;
|
28
|
+
|
29
|
+
.page__footer {
|
30
|
+
color: #fff !important; // override
|
31
|
+
}
|
32
|
+
|
33
|
+
.page__footer-follow .social-icons .svg-inline--fa {
|
34
|
+
color: inherit;
|
35
|
+
}
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: creek-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Creek Service - Big Andy Coates
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -100,6 +100,20 @@ dependencies:
|
|
100
100
|
- - "~>"
|
101
101
|
- !ruby/object:Gem::Version
|
102
102
|
version: '0.1'
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: jekyll-sass-converter
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - "~>"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '2.2'
|
110
|
+
type: :runtime
|
111
|
+
prerelease: false
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - "~>"
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '2.2'
|
103
117
|
- !ruby/object:Gem::Dependency
|
104
118
|
name: jekyll-algolia
|
105
119
|
requirement: !ruby/object:Gem::Requirement
|
@@ -170,7 +184,7 @@ dependencies:
|
|
170
184
|
- - ">="
|
171
185
|
- !ruby/object:Gem::Version
|
172
186
|
version: 12.3.3
|
173
|
-
description:
|
187
|
+
description:
|
174
188
|
email:
|
175
189
|
- 8012398+big-andy-coates@users.noreply.github.com
|
176
190
|
executables: []
|
@@ -274,6 +288,7 @@ files:
|
|
274
288
|
- _sass/minimal-mistakes/skins/_air.scss
|
275
289
|
- _sass/minimal-mistakes/skins/_aqua.scss
|
276
290
|
- _sass/minimal-mistakes/skins/_contrast.scss
|
291
|
+
- _sass/minimal-mistakes/skins/_creek.scss
|
277
292
|
- _sass/minimal-mistakes/skins/_dark.scss
|
278
293
|
- _sass/minimal-mistakes/skins/_default.scss
|
279
294
|
- _sass/minimal-mistakes/skins/_dirt.scss
|
@@ -326,10 +341,10 @@ files:
|
|
326
341
|
- assets/images/android-chrome-512x512.png
|
327
342
|
- assets/images/apple-touch-icon.png
|
328
343
|
- assets/images/browserconfig.xml
|
329
|
-
- assets/images/creek-logo.png
|
330
344
|
- assets/images/favicon-16x16.png
|
331
345
|
- assets/images/favicon-32x32.png
|
332
346
|
- assets/images/favicon.ico
|
347
|
+
- assets/images/logo_drop_shadow.png
|
333
348
|
- assets/images/mstile-150x150.png
|
334
349
|
- assets/images/safari-pinned-tab.svg
|
335
350
|
- assets/images/site-under-construction.png
|
@@ -353,7 +368,7 @@ licenses:
|
|
353
368
|
- MIT
|
354
369
|
metadata:
|
355
370
|
plugin_type: theme
|
356
|
-
post_install_message:
|
371
|
+
post_install_message:
|
357
372
|
rdoc_options: []
|
358
373
|
require_paths:
|
359
374
|
- lib
|
@@ -368,8 +383,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
368
383
|
- !ruby/object:Gem::Version
|
369
384
|
version: '0'
|
370
385
|
requirements: []
|
371
|
-
rubygems_version: 3.3.
|
372
|
-
signing_key:
|
386
|
+
rubygems_version: 3.3.26
|
387
|
+
signing_key:
|
373
388
|
specification_version: 4
|
374
|
-
summary: A Jekyll theme gem,
|
389
|
+
summary: A Jekyll theme gem, intended only for the Creek website.
|
375
390
|
test_files: []
|
Binary file
|