-
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.
- Loading branch information
Showing
9 changed files
with
107 additions
and
34 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,4 @@ | ||
- name: Home | ||
link: / | ||
- name: Sobre | ||
link: /sobre.html | ||
- name: Blog | ||
link: /pages/blog.html |
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,12 @@ | ||
--- | ||
layout: default | ||
--- | ||
<h1> Resumo do Syllabus para CTFL - 4.0v </h1> | ||
<h1> Apresentação do resumo </h1> | ||
|
||
<h1>{{ page.title }}</h1> | ||
<p>{{ page.date | date_to_string }} - {{ page.author }}</p> | ||
|
||
|
||
<!-- Estrutura do resumo será montada aqui com os dados do post --> | ||
{{content}} |
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,8 @@ | ||
--- | ||
layout: CTFL-resumo | ||
author: Ana Carolina Rodrigues Rocha | ||
title: Fundamentos de Teste | ||
# collection: ctfl | ||
--- | ||
|
||
Resumo do capítulo 01 |
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,34 @@ | ||
<!doctype html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<title>Fundamentos de Teste</title> | ||
</head> | ||
|
||
<body> | ||
<nav> | ||
|
||
<a href="/" > | ||
Home | ||
</a> | ||
|
||
<a href="/pages/blog.html" > | ||
Blog | ||
</a> | ||
|
||
|
||
</nav> | ||
<h1> Resumo do Syllabus para CTFL - 4.0v </h1> | ||
<h1> Apresentação do resumo </h1> | ||
|
||
<h1>Fundamentos de Teste</h1> | ||
<p>31 Jul 2024 - Ana Carolina Rodrigues Rocha</p> | ||
|
||
|
||
<!-- Estrutura do resumo será montada aqui com os dados do post --> | ||
<p>Resumo do capítulo 01</p> | ||
|
||
</body> | ||
|
||
</html> |
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 |
---|---|---|
|
@@ -13,8 +13,8 @@ | |
Home | ||
</a> | ||
|
||
<a href="/sobre.html" > | ||
Sobre | ||
<a href="/pages/blog.html" > | ||
Blog | ||
</a> | ||
|
||
|
||
|
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,35 @@ | ||
<!doctype html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<title>Blog</title> | ||
</head> | ||
|
||
<body> | ||
<nav> | ||
|
||
<a href="/" > | ||
Home | ||
</a> | ||
|
||
<a href="/pages/blog.html" class="current" > | ||
Blog | ||
</a> | ||
|
||
|
||
</nav> | ||
<h1>Últimos Posts</h1> | ||
|
||
<ul> | ||
|
||
<li> | ||
<h2><a href="/2024/07/31/fundamentosDeTeste.html">Fundamentos de Teste</a></h2> | ||
<p>Resumo do capítulo 01</p> | ||
|
||
</li> | ||
|
||
</ul> | ||
</body> | ||
|
||
</html> |
This file was deleted.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
layout: default | ||
title: Blog | ||
--- | ||
<h1>Últimos Posts</h1> | ||
|
||
<ul> | ||
{% for post in site.posts %} | ||
<li> | ||
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2> | ||
{{ post.excerpt }} | ||
</li> | ||
{% endfor %} | ||
</ul> |
This file was deleted.
Oops, something went wrong.