diff --git a/exampleSite/content/about.md b/exampleSite/content/about.md index b31bf1da9..5841edb70 100644 --- a/exampleSite/content/about.md +++ b/exampleSite/content/about.md @@ -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. diff --git a/exampleSite/content/about.pt-br.md b/exampleSite/content/about.pt-br.md index fd76ad11f..6a8f9ae26 100644 --- a/exampleSite/content/about.pt-br.md +++ b/exampleSite/content/about.pt-br.md @@ -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. diff --git a/exampleSite/content/posts/emoji-support.md b/exampleSite/content/posts/emoji-support.md index 0044247e9..e83701e0b 100644 --- a/exampleSite/content/posts/emoji-support.md +++ b/exampleSite/content/posts/emoji-support.md @@ -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. diff --git a/exampleSite/content/posts/emoji-support.pt-br.md b/exampleSite/content/posts/emoji-support.pt-br.md index 78b835aa7..530c12248 100644 --- a/exampleSite/content/posts/emoji-support.pt-br.md +++ b/exampleSite/content/posts/emoji-support.pt-br.md @@ -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. diff --git a/exampleSite/content/posts/external-post.md b/exampleSite/content/posts/external-post.md index 92d6ed880..d46d475a9 100644 --- a/exampleSite/content/posts/external-post.md +++ b/exampleSite/content/posts/external-post.md @@ -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" +++ diff --git a/exampleSite/content/posts/external-post.pt-br.md b/exampleSite/content/posts/external-post.pt-br.md index ac4e875a9..a572d8089 100644 --- a/exampleSite/content/posts/external-post.pt-br.md +++ b/exampleSite/content/posts/external-post.pt-br.md @@ -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" +++ diff --git a/exampleSite/content/posts/html-and-css-only-tabs.md b/exampleSite/content/posts/html-and-css-only-tabs.md index 82673bbf9..3c831bf1d 100644 --- a/exampleSite/content/posts/html-and-css-only-tabs.md +++ b/exampleSite/content/posts/html-and-css-only-tabs.md @@ -14,7 +14,8 @@ categories = [ "theme demo", "syntax", ] -series = ["Theme Demo"] +[params] + series = ["Theme Demo"] aliases = ["migrate-from-jekyl"] +++ diff --git a/exampleSite/content/posts/html-and-css-only-tabs.pt-br.md b/exampleSite/content/posts/html-and-css-only-tabs.pt-br.md index 5f772c0a9..e2bec7b81 100644 --- a/exampleSite/content/posts/html-and-css-only-tabs.pt-br.md +++ b/exampleSite/content/posts/html-and-css-only-tabs.pt-br.md @@ -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"] +++ diff --git a/exampleSite/content/posts/markdown-syntax.md b/exampleSite/content/posts/markdown-syntax.md index 5d8385eee..4fe6a1300 100644 --- a/exampleSite/content/posts/markdown-syntax.md +++ b/exampleSite/content/posts/markdown-syntax.md @@ -13,7 +13,8 @@ categories = [ "theme demo", "syntax", ] -series = ["Theme Demo"] +[params] + series = ["Theme Demo"] aliases = ["migrate-from-jekyl"] +++ diff --git a/exampleSite/content/posts/markdown-syntax.pt-br.md b/exampleSite/content/posts/markdown-syntax.pt-br.md index b38552456..84fdf093a 100644 --- a/exampleSite/content/posts/markdown-syntax.pt-br.md +++ b/exampleSite/content/posts/markdown-syntax.pt-br.md @@ -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"] +++ diff --git a/exampleSite/content/posts/math-typesetting.md b/exampleSite/content/posts/math-typesetting.md index e4dca41d3..4bdefaa9d 100644 --- a/exampleSite/content/posts/math-typesetting.md +++ b/exampleSite/content/posts/math-typesetting.md @@ -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", @@ -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. diff --git a/exampleSite/content/posts/math-typesetting.pt-br.md b/exampleSite/content/posts/math-typesetting.pt-br.md index 63cf7fdc2..8296a0f56 100644 --- a/exampleSite/content/posts/math-typesetting.pt-br.md +++ b/exampleSite/content/posts/math-typesetting.pt-br.md @@ -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", @@ -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. diff --git a/exampleSite/content/posts/mermaid-support.md b/exampleSite/content/posts/mermaid-support.md index 1918bfd2e..60b403895 100644 --- a/exampleSite/content/posts/mermaid-support.md +++ b/exampleSite/content/posts/mermaid-support.md @@ -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. diff --git a/exampleSite/content/posts/mermaid-support.pt-br.md b/exampleSite/content/posts/mermaid-support.pt-br.md index b42755b99..45f6b084e 100644 --- a/exampleSite/content/posts/mermaid-support.pt-br.md +++ b/exampleSite/content/posts/mermaid-support.pt-br.md @@ -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. diff --git a/exampleSite/content/posts/more-rich-content.md b/exampleSite/content/posts/more-rich-content.md index 5eb656c0b..ad1a3e42e 100644 --- a/exampleSite/content/posts/more-rich-content.md +++ b/exampleSite/content/posts/more-rich-content.md @@ -14,7 +14,8 @@ categories = [ "theme demo", "syntax", ] -series = ["Theme Demo"] +[params] + series = ["Theme Demo"] +++ Hugo Coder provides some Custom Shortcodes. diff --git a/exampleSite/content/posts/more-rich-content.pt-br.md b/exampleSite/content/posts/more-rich-content.pt-br.md index 6e00fe419..7c6064d7d 100644 --- a/exampleSite/content/posts/more-rich-content.pt-br.md +++ b/exampleSite/content/posts/more-rich-content.pt-br.md @@ -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. diff --git a/exampleSite/content/posts/rich-content.md b/exampleSite/content/posts/rich-content.md index bf6d695f7..7911b9372 100644 --- a/exampleSite/content/posts/rich-content.md +++ b/exampleSite/content/posts/rich-content.md @@ -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. diff --git a/exampleSite/content/posts/rich-content.pt-br.md b/exampleSite/content/posts/rich-content.pt-br.md index 61b875db5..e8a9698a7 100644 --- a/exampleSite/content/posts/rich-content.pt-br.md +++ b/exampleSite/content/posts/rich-content.pt-br.md @@ -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.