Skip to content

Commit

Permalink
style: add site.title on all titles
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryrden committed Dec 27, 2023
1 parent afb4a90 commit 2d44536
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 21 deletions.
1 change: 1 addition & 0 deletions 404.en.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
permalink: /404.html
title: Ooops! Page not found | {{ site.title }}
lang: en
layout: default
---
Expand Down
1 change: 1 addition & 0 deletions 404.pt-br.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
permalink: /404.html
title: Ooops! Página não encontrada | {{ site.title }}
lang: pt-br
layout: default
---
Expand Down
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 0 additions & 6 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-site-verification" content="{{ site.google_search_console }}" />
{% seo %}
{% if page.description %}
<meta name="description" content="{{ page.description }}">
{% else %}
<meta name="description" content="{{ site.description }}">
{% endif %}
<title>ryan.dev</title>
<link rel="stylesheet" href="{{ '/assets/styles.css' | relative_url }}">
<script src="{{ '/assets/script.js' | relative_url }}" defer></script>
</head>
Expand Down
2 changes: 1 addition & 1 deletion _posts/2023-04-17-githubSSH-en.md
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion _posts/2023-04-17-githubSSH-pt-br.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion _posts/2023-08-19-timeManagementForDevs-en.md
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion _posts/2023-08-19-timeManagementForDevs-pt-br.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion about.en.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: About
title: About | {{ site.title }}
lang: en
permalink: /about/
---
Expand Down
2 changes: 1 addition & 1 deletion about.pt-br.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: About
title: Sobre | {{ site.title }}
lang: pt-br
permalink: /about/
---
Expand Down
2 changes: 1 addition & 1 deletion blog.en.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Blog
title: Blog | {{ site.title }}
lang: en
permalink: /blog/
---
Expand Down
2 changes: 1 addition & 1 deletion blog.pt-br.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Blog
title: Blog | {{ site.title }}
lang: pt-br
permalink: /blog/
---
Expand Down
2 changes: 1 addition & 1 deletion contact.en.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Contact
title: Contact | {{ site.title }}
lang: en
permalink: /contact/
---
Expand Down
2 changes: 1 addition & 1 deletion contact.pt-br.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Contact
title: Contato | {{ site.title }}
lang: pt-br
permalink: /contact/
---
Expand Down
2 changes: 1 addition & 1 deletion home.en.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Home
title: Home | {{ site.title }}
lang: en
permalink: /
---
Expand Down
2 changes: 1 addition & 1 deletion home.pt-br.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Home
title: Início | {{ site.title }}
lang: pt-br
permalink: /
---
Expand Down
2 changes: 1 addition & 1 deletion projects.en.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Projects
title: Projects | {{ site.title }}
lang: en
permalink: /projects/
---
Expand Down
2 changes: 1 addition & 1 deletion projects.pt-br.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Projects
title: Projetos | {{ site.title }}
lang: pt-br
permalink: /projects/
---
Expand Down
2 changes: 1 addition & 1 deletion thankyou.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Thank You
title: Obrigado | {{ site.title }}
permalink: /thankyou/
---
<style>
Expand Down

0 comments on commit 2d44536

Please sign in to comment.