From 49187d824a1b76caa4146c67f16b00d8bdb454ac Mon Sep 17 00:00:00 2001 From: Renan Taranto Date: Sun, 1 Oct 2023 20:57:05 -0300 Subject: [PATCH] [Home] Add "proposal" and "focus" --- _config.yml | 17 ++++++++++------- .../{index-header.html => home-header.html} | 16 +++++++--------- ...dex-navigation.html => home-navigation.html} | 0 _layouts/{index.html => home.html} | 0 4 files changed, 17 insertions(+), 16 deletions(-) rename _includes/{index-header.html => home-header.html} (73%) rename _includes/{index-navigation.html => home-navigation.html} (100%) rename _layouts/{index.html => home.html} (100%) diff --git a/_config.yml b/_config.yml index 470a102..745a30f 100644 --- a/_config.yml +++ b/_config.yml @@ -1,9 +1,12 @@ title: Renan Taranto tagline: Software Development -description: Software architecture, engineering and design. -home_description: - en_US: Software architecture, engineering and design. - pt_BR: Arquitetura, engenharia e design de software. +description: Software architecture, engineering and design +proposal: + en_US: Software development advisory + pt_BR: Assessoria em desenvolvimento de software +focus: + en_US: Software quality, engineering and architecture + pt_BR: Engenharia, arquitetura e qualidade de software url: https://www.renantaranto.com author: Renan Taranto social: @@ -22,9 +25,9 @@ defaults: - scope: path: "index.md" values: - navigation: "index-navigation.html" - header: "index-header.html" - layout: "index" + navigation: "home-navigation.html" + header: "home-header.html" + layout: "home" - scope: path: "" type: "posts" diff --git a/_includes/index-header.html b/_includes/home-header.html similarity index 73% rename from _includes/index-header.html rename to _includes/home-header.html index 05039bd..71f1b90 100644 --- a/_includes/index-header.html +++ b/_includes/home-header.html @@ -6,21 +6,18 @@

Taranto

- {% assign home_description = site.home_description[site.active_lang] %} - {% if home_description == nil %} - {% assign home_description = site.description %} - {% endif %}
-
-
+
+
{% include card-icon-primary.html %} {% include card-icon-primary.html %} {% include card-icon-github.html %} -

{{ home_description }}

+

{{ site.proposal[site.active_lang] }}

-
+
{% include card-icon-linkedin.html %} {% include card-icon-rss.html %} +

{{ site.focus[site.active_lang] }}

@@ -31,13 +28,14 @@

{% include card-icon-primary.html %} {% include card-icon-primary.html %} {% include card-icon-github.html %} -

{{ home_description }}

+

{{ site.proposal[site.active_lang] }}

{% include card-icon-linkedin.html %} {% include card-icon-rss.html %} +

{{ site.focus[site.active_lang] }}

diff --git a/_includes/index-navigation.html b/_includes/home-navigation.html similarity index 100% rename from _includes/index-navigation.html rename to _includes/home-navigation.html diff --git a/_layouts/index.html b/_layouts/home.html similarity index 100% rename from _layouts/index.html rename to _layouts/home.html