Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion exampleSite/content/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ title = "About"
description = "Hugo, the world's fastest framework for building websites"
date = "2019-02-28"
aliases = ["about-us", "about-hugo", "contact"]
author = "Hugo Authors"
[params]
author = "Hugo Authors"
+++

Written in Go, Hugo is an open source static site generator available under the [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.
Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/about.pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ title = "About"
description = "Hugo, the world's fastest framework for building websites"
date = "2019-02-28"
aliases = ["about-us", "about-hugo", "contact"]
author = "Hugo Authors"
[params]
author = "Hugo Authors"
+++

Escrito em Go, Hugo é um gerador de sites estáticos de código aberto disponível sobre a licença [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) O Hugo suporta TOML, YAML e JSON como arquivos de dados, Markdown e HTML como arquivos de conteúdo, e usa shortcodes para adicionar conteúdos ricos. Outras funcionalidades notaveis são taxonomias, modo multilingual, processamento de imagens, formatos de saída customizaveis, minificação de HTML/CSS/JS e suporte a fluxos SASS/SCSS.
Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/posts/emoji-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ categories = [
"syntax",
"theme demo",
]
series = ["Theme Demo"]
[params]
series = ["Theme Demo"]
+++

Emoji can be enabled in a Hugo project in a number of ways.
Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/posts/emoji-support.pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ categories = [
"sintaxe",
"demonstração do tema",
]
series = ["Demonstração do Tema"]
[params]
series = ["Demonstração do Tema"]
+++

Emojis podem ser ativados em um projeto Hugo de diversar formas.
Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/posts/external-post.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ slug = "hugo-coder-wiki"
tags = [
"hugo"
]
externalLink = "https://github.com/luizdepra/hugo-coder/wiki"
[params]
externalLink = "https://github.com/luizdepra/hugo-coder/wiki"
+++
3 changes: 2 additions & 1 deletion exampleSite/content/posts/external-post.pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ slug = "hugo-coder-wiki"
tags = [
"hugo"
]
externalLink = "https://github.com/luizdepra/hugo-coder/wiki"
[params]
externalLink = "https://github.com/luizdepra/hugo-coder/wiki"
+++
3 changes: 2 additions & 1 deletion exampleSite/content/posts/html-and-css-only-tabs.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ categories = [
"theme demo",
"syntax",
]
series = ["Theme Demo"]
[params]
series = ["Theme Demo"]
aliases = ["migrate-from-jekyl"]
+++

Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/posts/html-and-css-only-tabs.pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ categories = [
"sintaxe",
"demonstração do tema",
]
series = ["Demonstração do Tema"]
[params]
series = ["Demonstração do Tema"]
aliases = ["migrate-from-jekyl"]
+++

Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/posts/markdown-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ categories = [
"theme demo",
"syntax",
]
series = ["Theme Demo"]
[params]
series = ["Theme Demo"]
aliases = ["migrate-from-jekyl"]
+++

Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/posts/markdown-syntax.pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ categories = [
"sintaxe",
"demonstração do tema",
]
series = ["Demonstração do Tema"]
[params]
series = ["Demonstração do Tema"]
aliases = ["migrate-from-jekyl"]
+++

Expand Down
5 changes: 3 additions & 2 deletions exampleSite/content/posts/math-typesetting.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ authors = ["Lone Coder"]
title = "Math Typesetting"
date = "2023-07-10"
description = "A brief guide to setup KaTeX"
math = true
tags = [
"hugo",
"markdown",
Expand All @@ -14,7 +13,9 @@ categories = [
"theme demo",
"syntax",
]
series = ["Theme Demo"]
[params]
math = true
series = ["Theme Demo"]
+++

Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.
Expand Down
5 changes: 3 additions & 2 deletions exampleSite/content/posts/math-typesetting.pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ authors = ["Programador Solitário"]
title = "Configuração de Equações Matemáticas"
date = "2023-07-10"
description = "Um guia rápido sobre utilizar KaTeX"
math ="true"
tags = [
"hugo",
"markdown",
Expand All @@ -14,7 +13,9 @@ categories = [
"sintaxe",
"demonstração do tema",
]
series = ["Demonstração do Tema"]
[params]
math = "true"
series = ["Demonstração do Tema"]
+++

Em um projeto Hugo as Notações Matemáticas podem ser usadas com a ajuda de bibliotecas JavaScript de terceiros.
Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/posts/mermaid-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ categories = [
"theme demo",
"syntax",
]
series = ["Theme Demo"]
[params]
series = ["Theme Demo"]
+++

If you want to use [Mermaid-JS](https://mermaid-js.github.io/mermaid/#/) on your website.
Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/posts/mermaid-support.pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ categories = [
"sintaxe",
"demonstração do tema",
]
series = ["Demonstração do Tema"]
[params]
series = ["Demonstração do Tema"]
+++

Se quiser usar o [Mermaid-JS](https://mermaid-js.github.io/mermaid/#/) em sua página.
Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/posts/more-rich-content.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ categories = [
"theme demo",
"syntax",
]
series = ["Theme Demo"]
[params]
series = ["Theme Demo"]
+++

Hugo Coder provides some Custom Shortcodes.
Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/posts/more-rich-content.pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ categories = [
"sintaxe",
"demonstração do tema",
]
series = ["Demonstração do Tema"]
[params]
series = ["Demonstração do Tema"]
+++

O Hugo Coder proporciona alguns Shortcodes Customizados.
Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/posts/rich-content.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ categories = [
"theme demo",
"syntax",
]
series = ["Theme Demo"]
[params]
series = ["Theme Demo"]
+++

Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/posts/rich-content.pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ categories = [
"sintaxe",
"demonstração do tema",
]
series = ["Demonstração do Tema"]
[params]
series = ["Demonstração do Tema"]
+++

O Hugo vem com vários [Shortcodes Internos](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes) para conteúdo rico, assim como uma [Configuração de Privacidade](https://gohugo.io/about/hugo-and-gdpr/) e uma gama de Shortcodes simples que permitem embutir versões estáticas e sem JS de várias de redes sociais.
Expand Down