From 2d445365df5034aa0acc06526c3afba31f31e4fe Mon Sep 17 00:00:00 2001 From: Ryan S Date: Wed, 27 Dec 2023 12:46:01 -0300 Subject: [PATCH] style: add site.title on all titles --- 404.en.html | 1 + 404.pt-br.html | 1 + _config.yml | 2 ++ _layouts/default.html | 6 ------ _posts/2023-04-17-githubSSH-en.md | 2 +- _posts/2023-04-17-githubSSH-pt-br.md | 2 +- _posts/2023-08-19-timeManagementForDevs-en.md | 2 +- _posts/2023-08-19-timeManagementForDevs-pt-br.md | 2 +- about.en.md | 2 +- about.pt-br.md | 2 +- blog.en.md | 2 +- blog.pt-br.md | 2 +- contact.en.html | 2 +- contact.pt-br.html | 2 +- home.en.md | 2 +- home.pt-br.md | 2 +- projects.en.md | 2 +- projects.pt-br.md | 2 +- thankyou.html | 2 +- 19 files changed, 19 insertions(+), 21 deletions(-) diff --git a/404.en.html b/404.en.html index 5b33cfd..8ad1733 100644 --- a/404.en.html +++ b/404.en.html @@ -1,5 +1,6 @@ --- permalink: /404.html +title: Ooops! Page not found | {{ site.title }} lang: en layout: default --- diff --git a/404.pt-br.html b/404.pt-br.html index f6808dc..09d75de 100644 --- a/404.pt-br.html +++ b/404.pt-br.html @@ -1,5 +1,6 @@ --- permalink: /404.html +title: Ooops! Página não encontrada | {{ site.title }} lang: pt-br layout: default --- diff --git a/_config.yml b/_config.yml index e40ea8a..762c46c 100644 --- a/_config.yml +++ b/_config.yml @@ -17,6 +17,8 @@ default_lang: "pt-br" exclude_from_localization: ["javascript", "images", "css", "public"] parallel_localization: true +# Site settings +title: ryan.dev description: Blog pessoal de Ryan Souza, desenvolvedor e estudante na USP, dedicado a artigos sobre engenharia de software e experiências de carreira. Encontre reflexões, dicas e análises sobre desenvolvimento de sistemas, projetos open source e tecnologia. Um espaço para compartilhar conhecimento e insights sobre a indústria de TI. collections: diff --git a/_layouts/default.html b/_layouts/default.html index c9b93f3..97b473f 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -6,12 +6,6 @@ {% seo %} - {% if page.description %} - - {% else %} - - {% endif %} - ryan.dev diff --git a/_posts/2023-04-17-githubSSH-en.md b/_posts/2023-04-17-githubSSH-en.md index 146adfb..a7bad9d 100644 --- a/_posts/2023-04-17-githubSSH-en.md +++ b/_posts/2023-04-17-githubSSH-en.md @@ -1,6 +1,6 @@ --- layout: post -title: SSH key on github - Windows and Linux +title: SSH key on github - Windows and Linux | {{ site.title }} lang: en description: Step-by-step guide on how to generate and add an SSH key to GitHub for secure authentication to repositories. The article covers creating SSH keys using the ED25519 algorithm, offering detailed instructions for Linux and Windows users. Learn how to configure the SSH key on GitHub to facilitate operations such as push and pull without the need for repeated authentication. cover_image: 'https://i.imgur.com/9GC9TvD.jpeg' diff --git a/_posts/2023-04-17-githubSSH-pt-br.md b/_posts/2023-04-17-githubSSH-pt-br.md index 4cb4041..f02b76a 100644 --- a/_posts/2023-04-17-githubSSH-pt-br.md +++ b/_posts/2023-04-17-githubSSH-pt-br.md @@ -1,6 +1,6 @@ --- layout: post -title: Chave SSH no github - Windows e Linux +title: Chave SSH no github - Windows e Linux | {{ site.title }} lang: pt-br published: true description: Guia passo a passo sobre como gerar e adicionar uma chave SSH ao GitHub para autenticação segura em repositórios. O artigo aborda a criação de chaves SSH usando o algoritmo ED25519, oferecendo instruções detalhadas para usuários Linux e Windows. Aprenda a configurar a chave SSH no GitHub para facilitar operações como push e pull sem a necessidade de autenticação repetida. diff --git a/_posts/2023-08-19-timeManagementForDevs-en.md b/_posts/2023-08-19-timeManagementForDevs-en.md index 40ec633..ba61e0c 100644 --- a/_posts/2023-08-19-timeManagementForDevs-en.md +++ b/_posts/2023-08-19-timeManagementForDevs-en.md @@ -1,6 +1,6 @@ --- layout: post -title: Time Management and Productivity for Developers +title: Time Management and Productivity for Developers | {{ site.title }} lang: en description: This article provides an in-depth look at time management in the context of software development. It addresses the importance of mental, physiological and technical dimensions in productivity and presents techniques such as Weekly Planning, Pomodoro and Eisenhower Matrix. The focus is to provide practical methods for developers to improve time management and quality of work on technology projects. cover_image: 'https://i.imgur.com/oCZcIby.jpg' diff --git a/_posts/2023-08-19-timeManagementForDevs-pt-br.md b/_posts/2023-08-19-timeManagementForDevs-pt-br.md index ea5ca41..57a47ea 100644 --- a/_posts/2023-08-19-timeManagementForDevs-pt-br.md +++ b/_posts/2023-08-19-timeManagementForDevs-pt-br.md @@ -1,7 +1,7 @@ --- layout: post comments: true -title: Gestão de tempo e produtividade para Devs +title: Gestão de tempo e produtividade para Devs | {{ site.title }} lang: pt-br published: true description: Este artigo oferece uma visão detalhada sobre gerenciamento de tempo no contexto do desenvolvimento de software. Aborda a importância das dimensões mental, fisiológica e técnica na produtividade e apresenta técnicas como Planejamento Semanal, Pomodoro e Matriz de Eisenhower. O foco é fornecer métodos práticos para desenvolvedores aprimorarem a gestão do tempo e a qualidade do trabalho em projetos de tecnologia. diff --git a/about.en.md b/about.en.md index 37ef083..738ad91 100644 --- a/about.en.md +++ b/about.en.md @@ -1,5 +1,5 @@ --- -title: About +title: About | {{ site.title }} lang: en permalink: /about/ --- diff --git a/about.pt-br.md b/about.pt-br.md index e1285e3..42e5027 100644 --- a/about.pt-br.md +++ b/about.pt-br.md @@ -1,5 +1,5 @@ --- -title: About +title: Sobre | {{ site.title }} lang: pt-br permalink: /about/ --- diff --git a/blog.en.md b/blog.en.md index 19067d9..e0da36d 100644 --- a/blog.en.md +++ b/blog.en.md @@ -1,5 +1,5 @@ --- -title: Blog +title: Blog | {{ site.title }} lang: en permalink: /blog/ --- diff --git a/blog.pt-br.md b/blog.pt-br.md index aa0b835..0d6ee3e 100644 --- a/blog.pt-br.md +++ b/blog.pt-br.md @@ -1,5 +1,5 @@ --- -title: Blog +title: Blog | {{ site.title }} lang: pt-br permalink: /blog/ --- diff --git a/contact.en.html b/contact.en.html index 5f645b3..4259c6b 100644 --- a/contact.en.html +++ b/contact.en.html @@ -1,5 +1,5 @@ --- -title: Contact +title: Contact | {{ site.title }} lang: en permalink: /contact/ --- diff --git a/contact.pt-br.html b/contact.pt-br.html index caa67c7..d426d5f 100644 --- a/contact.pt-br.html +++ b/contact.pt-br.html @@ -1,5 +1,5 @@ --- -title: Contact +title: Contato | {{ site.title }} lang: pt-br permalink: /contact/ --- diff --git a/home.en.md b/home.en.md index 916d4a2..a7ea6ec 100644 --- a/home.en.md +++ b/home.en.md @@ -1,5 +1,5 @@ --- -title: Home +title: Home | {{ site.title }} lang: en permalink: / --- diff --git a/home.pt-br.md b/home.pt-br.md index 63f18df..0a9fc6e 100644 --- a/home.pt-br.md +++ b/home.pt-br.md @@ -1,5 +1,5 @@ --- -title: Home +title: Início | {{ site.title }} lang: pt-br permalink: / --- diff --git a/projects.en.md b/projects.en.md index fb1940a..4364813 100644 --- a/projects.en.md +++ b/projects.en.md @@ -1,5 +1,5 @@ --- -title: Projects +title: Projects | {{ site.title }} lang: en permalink: /projects/ --- diff --git a/projects.pt-br.md b/projects.pt-br.md index 08ca01c..365c459 100644 --- a/projects.pt-br.md +++ b/projects.pt-br.md @@ -1,5 +1,5 @@ --- -title: Projects +title: Projetos | {{ site.title }} lang: pt-br permalink: /projects/ --- diff --git a/thankyou.html b/thankyou.html index 6838e17..9e175dd 100644 --- a/thankyou.html +++ b/thankyou.html @@ -1,5 +1,5 @@ --- -title: Thank You +title: Obrigado | {{ site.title }} permalink: /thankyou/ ---