Skip to content

Commit

Permalink
post(cka day1): Add new post on CKA training
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanjerome committed Jan 1, 2025
1 parent c069ee5 commit 5717feb
Show file tree
Hide file tree
Showing 9 changed files with 981 additions and 4 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ group :jekyll_plugins do
gem 'jekyll-polyglot', '= 1.8.1'
gem 'jekyll_picture_tag', '= 2.1.0'
gem 'addressable', '= 2.8.7'
gem 'csv', '= 3.3.2'
end

gem 'webrick', '= 1.8.2'
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ This repository contains the source code for the Scalastic website, a project bu

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

- Ruby 3.2.2
- Bundler 2.4.10
- Ruby >= 3 (latest recommended, also bundler included)
- glib 2
- libvips

## Installation

Expand Down
28 changes: 26 additions & 2 deletions _includes/head.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
{%- capture pageTitle %}{% if page.title %}{{ page.title }}{% else %}{{ site.data.i18n.site-description }}{% endif %}{% endcapture -%}
{%- capture pageDescription %}{% if page.description %}{{ page.description }}{% else %}{{ site.data.i18n.site-description }}{% endif %}{% endcapture -%}
{%- capture pageTitle -%}
{%- if page.seo_title -%}
{{ page.seo_title }}
{%- elsif page.title -%}
{{ page.title }}
{%- else -%}
{{ site.data.i18n.site-description }}
{%- endif -%}
{%- endcapture -%}

{%- capture pageDescription -%}
{%- if page.seo_description -%}
{{ page.seo_description }}
{%- elsif page.description -%}
{{ page.description }}
{%- else -%}
{{ site.data.i18n.site-description }}
{%- endif -%}
{%- endcapture -%}

{%- capture pageUrl -%}
{%- if site.active_lang == site.default_lang -%}
{{ site.url | append: page.url | replace:'index.html','' }}
Expand Down Expand Up @@ -57,9 +75,15 @@
<meta property="article:modified_time" content="{{ page.last_modified_at | date_to_xmlschema }}">
{% endif -%}
<meta property="article:section" content="Technology">
{%- if page.series -%}
<meta property="article:series" content="{{ page.series }}">
{%- endif -%}
{%- for tag in page.tags %}
<meta property="article:tag" content="{{ tag }}">
{%- endfor %}
{%- if page.progression -%}
<meta property="article:tag" content="{{ page.progression }}">
{%- endif -%}
{%- endif %}
<!-- Meta twitter -->
<meta name="twitter:card" content="summary_large_image">
Expand Down
7 changes: 7 additions & 0 deletions _includes/jsonld_post.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,16 @@
"isAccessibleForFree": "True",
"isPartOf": {
"@type": ["CreativeWork", "Product", "WebSite"],
{% if page.series %}
"name": "{{ page.series }}",
{% else %}
"name": "Scalastic",
{% endif %}
"productID": "scalastic.io"
},
{% if page.progression %}
"position": "{{ page.progression }}",
{% endif %}
"inLanguage": "{% if site.active_lang == site.default_lang %}fr-FR{% else %}en-US{% endif %}",
"license": "https://creativecommons.org/licenses/by-nc-nd/4.0/",
"author": {
Expand Down
473 changes: 473 additions & 0 deletions _posts/2024-12-31-cka-day1-docker-introduction.markdown

Large diffs are not rendered by default.

471 changes: 471 additions & 0 deletions _posts/en/2024-12-31-cka-day1-docker-introduction.markdown

Large diffs are not rendered by default.

Binary file added assets/img/cka-docker-fundamentals.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/container-vs-vm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/docker-architecture.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5717feb

Please sign in to comment.