From 5e2eaf0c4d4d94829c21969772255dd16fae7560 Mon Sep 17 00:00:00 2001 From: Carvalho <75193903+CarvalhoJeo@users.noreply.github.com> Date: Sat, 5 Jul 2025 02:05:31 -0300 Subject: [PATCH] feat: final blog configurations --- docs/about/index.md | 6 ++++++ docs/blog/.authors.yml | 2 +- docs/blog/index.md | 7 +++++++ docs/blog/posts/semana1.md | 6 +++++- docs/index.md | 3 +++ mkdocs.yml | 18 +++++++++++++++--- styles/extra.css | 6 ++++++ 7 files changed, 43 insertions(+), 5 deletions(-) create mode 100644 styles/extra.css diff --git a/docs/about/index.md b/docs/about/index.md index 02e12dd..50d6937 100644 --- a/docs/about/index.md +++ b/docs/about/index.md @@ -1,2 +1,8 @@ +--- +title: Sobre +hide: + - navigation +--- + # Sobre diff --git a/docs/blog/.authors.yml b/docs/blog/.authors.yml index 50aa3df..8c76e2b 100644 --- a/docs/blog/.authors.yml +++ b/docs/blog/.authors.yml @@ -9,5 +9,5 @@ authors: avatar: https://github.com/carvalhojeo.png toso: name: Bruno Toso - description: Diretor de engenharia da stemOS e Mentor da 1156 + description: Diretor de engenharia da stemOS e Mentor do 1156 avatar: https://github.com/brunoUC.png \ No newline at end of file diff --git a/docs/blog/index.md b/docs/blog/index.md index a5a220d..21a8456 100644 --- a/docs/blog/index.md +++ b/docs/blog/index.md @@ -1 +1,8 @@ +--- +hide: + - navigation +extra: + class: center-content-page +--- + # Blog diff --git a/docs/blog/posts/semana1.md b/docs/blog/posts/semana1.md index 5b79ae3..66887d8 100644 --- a/docs/blog/posts/semana1.md +++ b/docs/blog/posts/semana1.md @@ -5,4 +5,8 @@ authors: - under --- -# Semana 1 - Chegada do SystemCore! \ No newline at end of file +# Semana 1 - Chegada do SystemCore! + + + + \ No newline at end of file diff --git a/docs/index.md b/docs/index.md index da73b45..d297971 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,7 +1,10 @@ --- title: "Página principal" +hide: + - navigation --- + # Bem-vindo ao Blog de Testes do System Core — Equipe 1156 ## Sobre nós diff --git a/mkdocs.yml b/mkdocs.yml index 345a687..4557cd0 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,7 +1,7 @@ site_name: SystemCore 1156 Blog site_description: Blog do Alpha Testing do SystemCore -site_url: http://www.test.com +site_url: http://1156undercontrol.github.io/ nav: - Página principal: index.md @@ -29,6 +29,7 @@ theme: features: - navigation.instant - navigation.tabs + - toc.follow extra: consent: @@ -41,7 +42,18 @@ extra: analytics: provider: google property: G-Q39SSS6SNG - + extra_css: + - styles/extra.css + social: + - icon: fontawesome/brands/github + link: https://github.com/1156UnderControl + - icon: fontawesome/brands/instagram + link: https://www.instagram.com/undercontrol1156/ + generator: false plugins: - search - - blog \ No newline at end of file + - blog: + archive: false + + +copyright: Copyright © 2025 UnderControl \ No newline at end of file diff --git a/styles/extra.css b/styles/extra.css new file mode 100644 index 0000000..45a4fe1 --- /dev/null +++ b/styles/extra.css @@ -0,0 +1,6 @@ +.center-content-page .md-content__inner { + margin-left: auto; + margin-right: auto; + text-align: center; + max-width: 800px; +} \ No newline at end of file