Skip to content

Commit

Permalink
base do blog adicionada
Browse files Browse the repository at this point in the history
  • Loading branch information
feroline committed Jul 31, 2024
1 parent a587fe9 commit c49e6f6
Show file tree
Hide file tree
Showing 9 changed files with 107 additions and 34 deletions.
4 changes: 2 additions & 2 deletions _data/navigation.yml
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
12 changes: 12 additions & 0 deletions _layouts/CTFL-resumo.html
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}}
8 changes: 8 additions & 0 deletions _posts/2024-07-31-fundamentosDeTeste.md
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
34 changes: 34 additions & 0 deletions _site/2024/07/31/fundamentosDeTeste.html
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>
4 changes: 2 additions & 2 deletions _site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
Home
</a>

<a href="/sobre.html" >
Sobre
<a href="/pages/blog.html" >
Blog
</a>


Expand Down
35 changes: 35 additions & 0 deletions _site/pages/blog.html
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>
25 changes: 0 additions & 25 deletions _site/sobre.html

This file was deleted.

14 changes: 14 additions & 0 deletions pages/blog.html
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>
5 changes: 0 additions & 5 deletions sobre.html

This file was deleted.

0 comments on commit c49e6f6

Please sign in to comment.