creek-jekyll-theme 1.4.1 → 1.5.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: 7b5503a1650809091ef1c2da64388fafb50f8bb62642d1e6c280630d64db10ab
4
- data.tar.gz: 77743d800fa4615b110ce624fd1ab584475255f923798e5aef79e4c6b0726e0c
3
+ metadata.gz: 9132cdf63e71150d4e342c7506677fcf7b4aa1baad28c91e90434c435e5729c3
4
+ data.tar.gz: af894db7e5b0ab0077c88a82c4e749565ba7a541a1752d9397e6111664bf2e46
5
5
  SHA512:
6
- metadata.gz: 1b54a5f49879840a7c61972c99f604ccd15f5a658198977061a00cd3b559a3042d8ad252817b58de8fc261aebaff36126e6b30930d28692b4bdc14561896cd2b
7
- data.tar.gz: e6301c9612df4f73379d490f99fa6b7cee37930c069242eeaf3bd3503279944a9eac7bccb2f4c37c4656598297a0a74a631b741fdc1ca21dc73e4fa0b2b8de2e
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 : "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
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/creek-logo.png" # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
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/creek-logo.png" # Open Graph/Twitter default site image
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
- <a href="{{ author.home | default: '/' | absolute_url }}">
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
- <a class="u-url" rel="me" href="{{ author.home | default: '/' | absolute_url }}" itemprop="url">{{ author.name }}</a>
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
- alt="{% if include.alt %}{{ include.alt }}{% endif %}">
4
+ alt="{{ include.alt }}"
5
+ style="max-width: {{ include.max-width | default: "100%" }};" />
6
+ </a>
4
7
  {%- if include.caption -%}
5
- <figcaption>
6
- {{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}
7
- </figcaption>
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.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: 2023-01-12 00:00:00.000000000 Z
11
+ date: 2023-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -184,7 +184,7 @@ dependencies:
184
184
  - - ">="
185
185
  - !ruby/object:Gem::Version
186
186
  version: 12.3.3
187
- description:
187
+ description:
188
188
  email:
189
189
  - 8012398+big-andy-coates@users.noreply.github.com
190
190
  executables: []
@@ -288,6 +288,7 @@ files:
288
288
  - _sass/minimal-mistakes/skins/_air.scss
289
289
  - _sass/minimal-mistakes/skins/_aqua.scss
290
290
  - _sass/minimal-mistakes/skins/_contrast.scss
291
+ - _sass/minimal-mistakes/skins/_creek.scss
291
292
  - _sass/minimal-mistakes/skins/_dark.scss
292
293
  - _sass/minimal-mistakes/skins/_default.scss
293
294
  - _sass/minimal-mistakes/skins/_dirt.scss
@@ -340,10 +341,10 @@ files:
340
341
  - assets/images/android-chrome-512x512.png
341
342
  - assets/images/apple-touch-icon.png
342
343
  - assets/images/browserconfig.xml
343
- - assets/images/creek-logo.png
344
344
  - assets/images/favicon-16x16.png
345
345
  - assets/images/favicon-32x32.png
346
346
  - assets/images/favicon.ico
347
+ - assets/images/logo_drop_shadow.png
347
348
  - assets/images/mstile-150x150.png
348
349
  - assets/images/safari-pinned-tab.svg
349
350
  - assets/images/site-under-construction.png
@@ -367,7 +368,7 @@ licenses:
367
368
  - MIT
368
369
  metadata:
369
370
  plugin_type: theme
370
- post_install_message:
371
+ post_install_message:
371
372
  rdoc_options: []
372
373
  require_paths:
373
374
  - lib
@@ -382,8 +383,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
382
383
  - !ruby/object:Gem::Version
383
384
  version: '0'
384
385
  requirements: []
385
- rubygems_version: 3.3.7
386
- signing_key:
386
+ rubygems_version: 3.3.26
387
+ signing_key:
387
388
  specification_version: 4
388
- summary: A Jekyll theme gem, indented only for the Creek website.
389
+ summary: A Jekyll theme gem, intended only for the Creek website.
389
390
  test_files: []
Binary file