-
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.
Correção template cvs e algum erro (#83)
- Loading branch information
Showing
8 changed files
with
73 additions
and
52 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 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 |
---|---|---|
|
@@ -9,3 +9,4 @@ draft = false | |
|
||
{{ m00inicio() }} | ||
|
||
{{ m00devicon() }} |
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,48 @@ | ||
{# | ||
This Template is for the 'Meus cvs' (/content/cv) eg: luis-ti.dev.br/cv/ ou luis-ti.dev.br/en/cv/ ou luis-ti.dev.br/es/cv/ | ||
#} | ||
|
||
{% extends "base.html" %} | ||
{%- block header %} | ||
{%- endblock header %} | ||
{%- block footer %} | ||
{%- endblock footer %} | ||
{%- block seo %} | ||
{{- super() }} | ||
{%- set title_addition = "" %} | ||
|
||
{%- if page.title and config.title %} | ||
{%- set title = page.title %} | ||
{%- set title_addition = title_separator ~ config.title %} | ||
{%- elif section.title and config.title %} | ||
{%- set title = section.title %} | ||
{%- set title_addition = title_separator ~ config.title %} | ||
{%- elif page.title %} | ||
{%- set title = page.title %} | ||
{%- elif section.title %} | ||
{%- set title = section.title %} | ||
{%- else %} | ||
{%- set title = config.title %} | ||
{%- endif %} | ||
|
||
{%- if page.description %} | ||
{%- set description = page.description %} | ||
{%- elif section.description %} | ||
{%- set description = section.description %} | ||
{%- else %} | ||
{%- set description = config.description %} | ||
{%- endif %} | ||
|
||
{{- macros_seo::seo(config=config, title=title, title_addition=title_addition, description=description) }} | ||
{%- endblock seo %} | ||
|
||
{%- block content %} | ||
<div> | ||
|
||
{%- if page.content %} | ||
{{ page.content | safe }} | ||
{%- elif section.content %} | ||
{{ section.content | safe }} | ||
{%- endif %} | ||
</div> | ||
{%- endblock 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,17 @@ | ||
<div class="user"> | ||
<div class="tech"> | ||
<i class="devicon-html5-plain-wordmark"></i> | ||
<i class="devicon-css3-plain-wordmark"></i> | ||
<i class="devicon-sass-original"></i> | ||
</div> | ||
<div class="tech"> | ||
<i class="devicon-docker-plain"></i> | ||
<i class="devicon-javascript-plain"></i> | ||
<i class="devicon-typescript-original"></i> | ||
</div> | ||
<div class="tech"> | ||
<i class="devicon-git-plain"></i> | ||
<i class="devicon-github-plain"></i> | ||
<i class="devicon-linux-plain"></i> | ||
</div> | ||
</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