-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
realizando algumas refatorações, adicionando cap 3, permalink
- Loading branch information
Showing
16 changed files
with
96 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# feroline.qa-bentevi | ||
Blog no qual tem o objetivo de compartilhar conhecimento sobre a área de qualidade de software e tecnologia. | ||
|
||
Blog com o objetivo de compartilhar conhecimento sobre a área de qualidade de software e tecnologia. | ||
Resumo CTFL 4.0 - ISTQB - BSTQB | ||
|
||
Acesso em : https://feroline.github.io/feroline.qa-bentevi/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
/* TODO: Converter arquivo em SASS para ser melhor interpretado pelo */ | ||
:root { | ||
--rodape-height: 6em; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
// TODO: Trazer esse código para atualidade | ||
// TODO: Trazer esse código para atualidade | ||
var prevScrollpos = window.pageYOffset; | ||
window.onscroll = function() { | ||
var currentScrollPos = window.pageYOffset; | ||
if (prevScrollpos > currentScrollPos) { | ||
document.getElementById("navbar-top").style.top = "0"; | ||
} else { | ||
document.getElementById("navbar-top").style.top = "-50px"; | ||
} | ||
prevScrollpos = currentScrollPos; | ||
} | ||
window.onscroll = function () { | ||
var currentScrollPos = window.pageYOffset; | ||
if (prevScrollpos > currentScrollPos) { | ||
document.getElementById('navbar-top').style.top = '0'; | ||
} else { | ||
document.getElementById('navbar-top').style.top = '-50px'; | ||
} | ||
prevScrollpos = currentScrollPos; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
capitulo: 3 | ||
indice: 3 | ||
order: 1 | ||
subcapitulo: false | ||
title: Teste Estático - Palavras Chave | ||
--- | ||
|
||
<div class="d-inline"> | ||
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/anomalia"> | ||
<span class="badge rounded-pill bg-dark">Anomalia</span> | ||
</a> | ||
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/teste-dinamico"> | ||
<span class="badge rounded-pill bg-dark">Teste Dinâmico</span> | ||
</a> | ||
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/revisao-formal"> | ||
<span class="badge rounded-pill bg-dark">Revisão Formal</span> | ||
</a> | ||
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/revisao-informal"> | ||
<span class="badge rounded-pill bg-dark">Revisão Informal</span> | ||
</a> | ||
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/inspecao"> | ||
<span class="badge rounded-pill bg-dark">Inspeção</span> | ||
</a> | ||
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/revisao"> | ||
<span class="badge rounded-pill bg-dark">Revisão</span> | ||
</a> | ||
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/analise-estatica"> | ||
<span class="badge rounded-pill bg-dark">Análise Estática</span> | ||
</a> | ||
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/teste-estatico"> | ||
<span class="badge rounded-pill bg-dark">Teste Estático</span> | ||
</a> | ||
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/revisao-tecnica"> | ||
<span class="badge rounded-pill bg-dark">Revisão Técnica</span> | ||
</a> | ||
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/walkthrough"> | ||
<span class="badge rounded-pill bg-dark">Walkthrough</span> | ||
</a> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: Teste Estático | ||
capitulo: 3 | ||
slug: teste-estatico | ||
--- | ||
|
||
<div> | ||
<b>Objetivos:</b> | ||
<ul> | ||
<li>Aprender sobre os fundamentos dos testes estáticos.</li> | ||
<li>Aprender sobre o processo de feedback e revisão.</li> | ||
</ul> | ||
</div> | ||
|
||
{% assign capitulo = site.ctfl_resumo | sort: "order" | where: "capitulo", page.capitulo %} | ||
|
||
{% for item in capitulo %} | ||
{% include mountAccordion.html item=item %} | ||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
title: Home | ||
|
||
--- | ||
<h1 class="justify-content-start"> Últimos posts </h1> | ||
|
||
{% for post in site.posts %} | ||
|
||
|