-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/csharpbrasil/csharpbrasil.g…
- Loading branch information
Showing
9 changed files
with
30 additions
and
316 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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Site settings | ||
title: C# Brasil | Unindo paixão e código | ||
description: "O blog do C# Brasil sobre Tecnologia e desenvolvimento" | ||
url: "http://localhost:4000" | ||
url: "http://csharpbrasil.com.br" | ||
author: | ||
name: "Raphael Cardoso" | ||
email: "[email protected]" | ||
|
@@ -16,15 +16,18 @@ permalink: /:title | |
#paginate: 8 | ||
#paginate_path: /page:num/ | ||
|
||
paginate: 5 | ||
paginate_path: "/page/:num/" | ||
|
||
# Pagination Settings | ||
pagination: | ||
enabled: true | ||
per_page: 20 | ||
permalink: '/page/:num/' | ||
title: ':title - Página :num' | ||
limit: 0 | ||
sort_field: 'date' | ||
sort_reverse: true | ||
# pagination: | ||
# enabled: true | ||
# per_page: 20 | ||
# permalink: '/page/:num/' | ||
# title: ':title - Página :num' | ||
# limit: 0 | ||
# sort_field: 'date' | ||
# sort_reverse: true | ||
|
||
# Default values | ||
defaults: | ||
|
@@ -36,8 +39,8 @@ defaults: | |
layout: "post" | ||
|
||
# Plugins | ||
gems: | ||
- jekyll-paginate-v2 | ||
plugins: | ||
- jekyll-paginate | ||
|
||
# Custom variables | ||
version: "1.0.0" |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<header id="header"> | ||
<a href="{{ site.baseurl }}"> | ||
<a href="{{ site.url }}/"> | ||
<img src="{{ "/images/logo_csharpbrasil.png" | prepend: site.baseurl | replace: '//', '/' }}" class="logo" alt="C# Brasil"> | ||
</a> | ||
</header> |
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 |
---|---|---|
@@ -1,10 +1,6 @@ | ||
<nav id="nav"> | ||
<div id="nav-list"> | ||
<a href="{{ site.baseurl }}">Página inicial</a> | ||
{% for page in site.pages %} | ||
{% if page.layout == "page" %} | ||
<a href="{% if site.baseurl == "/" %}{{ page.url }}{% else %}{{ page.url | prepend: site.baseurl }}{% endif %}" title="{{ page.title }}">{{ page.title }}</a> | ||
{% endif %} | ||
{% endfor %} | ||
<a href="{{ site.url }}/">Página inicial</a> | ||
<a href="{{ site.url }}/sobre">Sobre o blog</a> | ||
</div> | ||
</nav> |
File renamed without changes.
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