Skip to content

Commit 5717feb

Browse files
committed
post(cka day1): Add new post on CKA training
1 parent c069ee5 commit 5717feb

File tree

9 files changed

+981
-4
lines changed

9 files changed

+981
-4
lines changed

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ group :jekyll_plugins do
1111
gem 'jekyll-polyglot', '= 1.8.1'
1212
gem 'jekyll_picture_tag', '= 2.1.0'
1313
gem 'addressable', '= 2.8.7'
14+
gem 'csv', '= 3.3.2'
1415
end
1516

1617
gem 'webrick', '= 1.8.2'

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ This repository contains the source code for the Scalastic website, a project bu
1212

1313
To work with this project, ensure you have the following installed:
1414

15-
- Ruby 3.2.2
16-
- Bundler 2.4.10
15+
- Ruby >= 3 (latest recommended, also bundler included)
16+
- glib 2
17+
- libvips
1718

1819
## Installation
1920

_includes/head.html

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
1-
{%- capture pageTitle %}{% if page.title %}{{ page.title }}{% else %}{{ site.data.i18n.site-description }}{% endif %}{% endcapture -%}
2-
{%- capture pageDescription %}{% if page.description %}{{ page.description }}{% else %}{{ site.data.i18n.site-description }}{% endif %}{% endcapture -%}
1+
{%- capture pageTitle -%}
2+
{%- if page.seo_title -%}
3+
{{ page.seo_title }}
4+
{%- elsif page.title -%}
5+
{{ page.title }}
6+
{%- else -%}
7+
{{ site.data.i18n.site-description }}
8+
{%- endif -%}
9+
{%- endcapture -%}
10+
11+
{%- capture pageDescription -%}
12+
{%- if page.seo_description -%}
13+
{{ page.seo_description }}
14+
{%- elsif page.description -%}
15+
{{ page.description }}
16+
{%- else -%}
17+
{{ site.data.i18n.site-description }}
18+
{%- endif -%}
19+
{%- endcapture -%}
20+
321
{%- capture pageUrl -%}
422
{%- if site.active_lang == site.default_lang -%}
523
{{ site.url | append: page.url | replace:'index.html','' }}
@@ -57,9 +75,15 @@
5775
<meta property="article:modified_time" content="{{ page.last_modified_at | date_to_xmlschema }}">
5876
{% endif -%}
5977
<meta property="article:section" content="Technology">
78+
{%- if page.series -%}
79+
<meta property="article:series" content="{{ page.series }}">
80+
{%- endif -%}
6081
{%- for tag in page.tags %}
6182
<meta property="article:tag" content="{{ tag }}">
6283
{%- endfor %}
84+
{%- if page.progression -%}
85+
<meta property="article:tag" content="{{ page.progression }}">
86+
{%- endif -%}
6387
{%- endif %}
6488
<!-- Meta twitter -->
6589
<meta name="twitter:card" content="summary_large_image">

_includes/jsonld_post.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,16 @@
2222
"isAccessibleForFree": "True",
2323
"isPartOf": {
2424
"@type": ["CreativeWork", "Product", "WebSite"],
25+
{% if page.series %}
26+
"name": "{{ page.series }}",
27+
{% else %}
2528
"name": "Scalastic",
29+
{% endif %}
2630
"productID": "scalastic.io"
2731
},
32+
{% if page.progression %}
33+
"position": "{{ page.progression }}",
34+
{% endif %}
2835
"inLanguage": "{% if site.active_lang == site.default_lang %}fr-FR{% else %}en-US{% endif %}",
2936
"license": "https://creativecommons.org/licenses/by-nc-nd/4.0/",
3037
"author": {

_posts/2024-12-31-cka-day1-docker-introduction.markdown

Lines changed: 473 additions & 0 deletions
Large diffs are not rendered by default.

_posts/en/2024-12-31-cka-day1-docker-introduction.markdown

Lines changed: 471 additions & 0 deletions
Large diffs are not rendered by default.
467 KB
Loading

assets/img/container-vs-vm.png

12.6 KB
Loading

assets/img/docker-architecture.jpg

154 KB
Loading

0 commit comments

Comments
 (0)