-
-
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.
Merge pull request #48 from oAGoulart/updates
Fix layouts and main bg-color
- Loading branch information
Showing
21 changed files
with
135 additions
and
71 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
layout: error | ||
title: 404 | ||
message: This page could not be found! | ||
--- |
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,53 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
{{ content }} | ||
|
||
<div class="page-head"> | ||
<h1 class="title is-size-1 has-text-centered has-text-info">{{ page.title }}</h1> | ||
</div> | ||
|
||
<div class="section blog"> | ||
<div class="container page"> | ||
{% if paginator.posts[0] %} | ||
{% for post in paginator.posts %} | ||
<h1> | ||
<a class="title" href="{{ post.url | relative_url }}">{{ post.title }}</a> | ||
</h1> | ||
|
||
<p class="author"> | ||
{% if post.author %} | ||
<span>by {{ post.author }}</span> | ||
{% endif %} | ||
|
||
{% if post.author and post.date %} | ||
<span> - </span> | ||
{% endif %} | ||
|
||
{% if post.date %} | ||
<span>{{ post.date | date: '%B %d, %Y' }}</span> | ||
{% endif %} | ||
</p> | ||
|
||
<p class="categories"> | ||
{% for category in post.categories %} | ||
<span>{{ category }}</span> | ||
{% endfor %} | ||
</p> | ||
|
||
<div class="post-body">{{ post.excerpt }}</div><hr> | ||
|
||
{% endfor %} | ||
|
||
{% else %} | ||
<div class="post-body"> | ||
<p class="has-text-centered">There's no content to be shown here!</p> | ||
</div> | ||
|
||
{% endif %} | ||
|
||
{% include pagination.html %} | ||
|
||
</div> {% comment %} container {% endcomment %} | ||
</div> {% comment %} section {% endcomment %} |
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,10 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
{{ content }} | ||
|
||
<div class="error"> | ||
<h1 class="title is-size-1 has-text-centered has-text-primary">{{ page.title }}</h1> | ||
<h2 class="subtitle has-text-centered has-text-primary">{{ page.message }}</h2> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
{{ content }} | ||
|
||
{% assign data = site.data.home %} | ||
|
||
{% for part in data %} | ||
|
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,8 +1,9 @@ | ||
--- | ||
layout: default | ||
title: Projects | ||
--- | ||
|
||
{{ content }} | ||
|
||
{% assign per_column = 3 %} | ||
|
||
<div class="projects"> | ||
|
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 |
---|---|---|
@@ -1,52 +1,4 @@ | ||
--- | ||
layout: default | ||
layout: blog | ||
title: Blog | ||
--- | ||
|
||
<div class="page-head"> | ||
<h1 class="title is-size-1 has-text-centered has-text-info">{{ page.title }}</h1> | ||
</div> | ||
|
||
<div class="section blog"> | ||
<div class="container page"> | ||
{% if paginator.posts[0] %} | ||
{% for post in paginator.posts %} | ||
<h1> | ||
<a class="title" href="{{ post.url | relative_url }}">{{ post.title }}</a> | ||
</h1> | ||
|
||
<p class="author"> | ||
{% if post.author %} | ||
<span>by {{ post.author }}</span> | ||
{% endif %} | ||
|
||
{% if post.author and post.date %} | ||
<span> - </span> | ||
{% endif %} | ||
|
||
{% if post.date %} | ||
<span>{{ post.date | date: '%B %d, %Y' }}</span> | ||
{% endif %} | ||
</p> | ||
|
||
<p class="categories"> | ||
{% for category in post.categories %} | ||
<span>{{ category }}</span> | ||
{% endfor %} | ||
</p> | ||
|
||
<div class="post-body">{{ post.excerpt }}</div><hr> | ||
|
||
{% endfor %} | ||
|
||
{% else %} | ||
<div class="post-body"> | ||
<p class="has-text-centered">There's no content to be shown here!</p> | ||
</div> | ||
|
||
{% endif %} | ||
|
||
{% include pagination.html %} | ||
|
||
</div> {% comment %} container {% endcomment %} | ||
</div> {% comment %} section {% endcomment %} |
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,4 @@ | ||
--- | ||
layout: contact | ||
title: Contact | ||
--- |
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,3 @@ | ||
--- | ||
layout: home | ||
--- |
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,4 @@ | ||
--- | ||
layout: papers | ||
title: Papers | ||
--- |
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,4 @@ | ||
--- | ||
layout: projects | ||
title: Projects | ||
--- |
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,4 @@ | ||
--- | ||
layout: resume | ||
title: Resume | ||
--- |
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