commit f5c5bd5cc6b2086c5d1446f6212c02931a038721 Author: clente Date: Mon Feb 13 21:55:28 2023 +0000 deploy: 27ad8a79e8313f349fc2437966f314be2cfaf73b diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/404.html b/404.html new file mode 100644 index 0000000..3453870 --- /dev/null +++ b/404.html @@ -0,0 +1,5 @@ +404

Example Site

404

ʕノ•ᴥ•ʔノ ︵ ┻━┻

\ No newline at end of file diff --git a/blog/emoji-support/index.html b/blog/emoji-support/index.html new file mode 100644 index 0000000..61a8bc5 --- /dev/null +++ b/blog/emoji-support/index.html @@ -0,0 +1,7 @@ +Emoji Support | Example Site

Example Site

Emoji Support

Emoji can be enabled in a Hugo project in a number of ways.

The emojify function can be called directly in templates or Inline Shortcodes.

To enable emoji globally, set enableEmoji to true in your site’s configuration and then you can type emoji shorthand codes directly in content files; e.g.

The Emoji cheat sheet is a useful reference for emoji shorthand codes.


N.B. The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.

1.emoji {
+2  font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
+3}

#emoji  

\ No newline at end of file diff --git a/blog/index.html b/blog/index.html new file mode 100644 index 0000000..ffcea2f --- /dev/null +++ b/blog/index.html @@ -0,0 +1,16 @@ +Blog | Example Site

Example Site

#css   +#emoji   +#html   +#markdown   +#privacy   +#shortcodes   +#text  
\ No newline at end of file diff --git a/blog/index.xml b/blog/index.xml new file mode 100644 index 0000000..f934ff4 --- /dev/null +++ b/blog/index.xml @@ -0,0 +1 @@ +Blog on Example Sitehttps://clente.github.io/hugo-bearcub/blog/Recent content in Blog on Example SiteHugo -- gohugo.ioen-USJohn Doe (CC BY 4.0)Mon, 11 Mar 2019 00:00:00 +0000Markdown Syntax Guidehttps://clente.github.io/hugo-bearcub/blog/markdown-syntax/Mon, 11 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/markdown-syntax/<p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p>Rich Contenthttps://clente.github.io/hugo-bearcub/blog/rich-content/Sun, 10 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/rich-content/<p>Hugo ships with several <a href="https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes">Built-in Shortcodes</a> for rich content, along with a <a href="https://gohugo.io/about/hugo-and-gdpr/">Privacy Config</a> and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.</p>Placeholder Texthttps://clente.github.io/hugo-bearcub/blog/placeholder-text/Sat, 09 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/placeholder-text/<p>Lorem est tota propiore conpellat pectoribus de pectora summo.</p>Math Typesettinghttps://clente.github.io/hugo-bearcub/blog/math-typesetting/Fri, 08 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/math-typesetting/<p>Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.</p>Emoji Supporthttps://clente.github.io/hugo-bearcub/blog/emoji-support/Tue, 05 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/emoji-support/<p>Emoji can be enabled in a Hugo project in a number of ways.</p> \ No newline at end of file diff --git a/blog/markdown-syntax/index.html b/blog/markdown-syntax/index.html new file mode 100644 index 0000000..b2bbec5 --- /dev/null +++ b/blog/markdown-syntax/index.html @@ -0,0 +1,38 @@ +Markdown Syntax Guide | Example Site

Example Site

Markdown Syntax Guide

This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.

Headings

The following HTML <h1><h6> elements represent six levels of section headings. <h1> is the highest section level while <h6> is the lowest.

H1

H2

H3

H4

H5
H6

Paragraph

Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.

Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.

Blockquotes

The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a footer or cite element, and optionally with in-line changes such as annotations and abbreviations.

Blockquote without attribution

Tiam, ad mint andaepu dandae nostion secatur sequo quae. +Note that you can use Markdown syntax within a blockquote.

Blockquote with attribution

Don’t communicate by sharing memory, share memory by communicating. +— Rob Pike1

Tables

Tables aren’t part of the core Markdown spec, but Hugo supports supports them out-of-the-box.

NameAge
Bob27
Alice23

Inline Markdown within tables

ItalicsBoldCode
italicsboldcode

Code Blocks

Code block with backticks

 1<!doctype html>
+ 2<html lang="en">
+ 3<head>
+ 4  <meta charset="utf-8">
+ 5  <title>Example HTML5 Document</title>
+ 6</head>
+ 7<body>
+ 8  <p>Test</p>
+ 9</body>
+10</html>
+

Code block indented with four spaces

<!doctype html>
+<html lang="en">
+<head>
+  <meta charset="utf-8">
+  <title>Example HTML5 Document</title>
+</head>
+<body>
+  <p>Test</p>
+</body>
+</html>
+

Code block with Hugo’s internal highlight shortcode

 1<!doctype html>
+ 2<html lang="en">
+ 3<head>
+ 4  <meta charset="utf-8">
+ 5  <title>Example HTML5 Document</title>
+ 6</head>
+ 7<body>
+ 8  <p>Test</p>
+ 9</body>
+10</html>

List Types

Ordered List

  1. First item
  2. Second item
  3. Third item

Unordered List

  • List item
  • Another item
  • And another item

Nested list

  • Fruit
    • Apple
    • Orange
    • Banana
  • Dairy
    • Milk
    • Cheese

Other Elements — abbr, sub, sup, kbd, mark

GIF is a bitmap image format.

H2O

Xn + Yn = Zn

Press CTRL+ALT+Delete to end the session.

Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.


  1. The above quote is excerpted from Rob Pike’s talk during Gopherfest, November 18, 2015. ↩︎

#markdown   +#css   +#html  

\ No newline at end of file diff --git a/blog/math-typesetting/index.html b/blog/math-typesetting/index.html new file mode 100644 index 0000000..39cf743 --- /dev/null +++ b/blog/math-typesetting/index.html @@ -0,0 +1,11 @@ +Math Typesetting | Example Site

Example Site

Math Typesetting

Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.

In this example we will be using KaTeX

  • Create a partial under /layouts/partials/math.html
  • Within this partial reference the Auto-render Extension or host these scripts locally.
  • Include the partial in your templates like so:
1{{ if or .Params.math .Site.Params.math }}
+2{{ partial "math.html" . }}
+3{{ end }}
+
  • To enable KaTex globally set the parameter math to true in a project’s configuration
  • To enable KaTex on a per page basis include the parameter math: true in content files

Note: Use the online reference of Supported TeX Functions

Examples

Block math: +$$ +\varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } } +$$

\ No newline at end of file diff --git a/blog/migrate-from-jekyl/index.html b/blog/migrate-from-jekyl/index.html new file mode 100644 index 0000000..7a5a095 --- /dev/null +++ b/blog/migrate-from-jekyl/index.html @@ -0,0 +1 @@ +https://clente.github.io/hugo-bearcub/blog/markdown-syntax/ \ No newline at end of file diff --git a/blog/placeholder-text/index.html b/blog/placeholder-text/index.html new file mode 100644 index 0000000..0dfddd5 --- /dev/null +++ b/blog/placeholder-text/index.html @@ -0,0 +1,6 @@ +Placeholder Text | Example Site

Example Site

Placeholder Text

Lorem est tota propiore conpellat pectoribus de pectora summo.

Redit teque digerit hominumque toris verebor lumina non cervice subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.

  1. Exierant elisi ambit vivere dedere
  2. Duce pollice
  3. Eris modo
  4. Spargitque ferrea quos palude

Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria tractus malis.

  1. Comas hunc haec pietate fetum procerum dixit
  2. Post torum vates letum Tiresia
  3. Flumen querellas
  4. Arcanaque montibus omnes
  5. Quidem et

Vagus elidunt

The Van de Graaf Canon

Mane refeci capiebant unda mulcebat

Victa caducifer, malo vulnere contra dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. Faces illo pepulere tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.

Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae vulnus haerentia iuste et exercebat, sui et.

Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel mitis temploque vocatus, inque alis, oculos nomen non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem Propoetides parte.

#markdown   +#text  

\ No newline at end of file diff --git a/blog/rich-content/index.html b/blog/rich-content/index.html new file mode 100644 index 0000000..db54f9f --- /dev/null +++ b/blog/rich-content/index.html @@ -0,0 +1,6 @@ +Rich Content | Example Site

Example Site

Rich Content

Hugo ships with several Built-in Shortcodes for rich content, along with a Privacy Config and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.


YouTube Privacy Enhanced Shortcode


Twitter Simple Shortcode


Vimeo Simple Shortcode

Sing Jan Swing - Kinetic Type

#shortcodes   +#privacy  

\ No newline at end of file diff --git a/categories/index.html b/categories/index.html new file mode 100644 index 0000000..e2a446b --- /dev/null +++ b/categories/index.html @@ -0,0 +1,7 @@ +Categories | Example Site

Example Site

Filtering for "Categories"

\ No newline at end of file diff --git a/categories/index.xml b/categories/index.xml new file mode 100644 index 0000000..8bfd7ca --- /dev/null +++ b/categories/index.xml @@ -0,0 +1 @@ +Categories on Example Sitehttps://clente.github.io/hugo-bearcub/categories/Recent content in Categories on Example SiteHugo -- gohugo.ioen-USJohn Doe (CC BY 4.0)Mon, 11 Mar 2019 00:00:00 +0000syntaxhttps://clente.github.io/hugo-bearcub/categories/syntax/Mon, 11 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/categories/syntax/themeshttps://clente.github.io/hugo-bearcub/categories/themes/Mon, 11 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/categories/themes/ \ No newline at end of file diff --git a/categories/syntax/index.html b/categories/syntax/index.html new file mode 100644 index 0000000..7eb5d3a --- /dev/null +++ b/categories/syntax/index.html @@ -0,0 +1,6 @@ +syntax | Example Site

Example Site

Filtering for "syntax"

\ No newline at end of file diff --git a/categories/syntax/index.xml b/categories/syntax/index.xml new file mode 100644 index 0000000..feca736 --- /dev/null +++ b/categories/syntax/index.xml @@ -0,0 +1 @@ +syntax on Example Sitehttps://clente.github.io/hugo-bearcub/categories/syntax/Recent content in syntax on Example SiteHugo -- gohugo.ioen-USJohn Doe (CC BY 4.0)Mon, 11 Mar 2019 00:00:00 +0000Markdown Syntax Guidehttps://clente.github.io/hugo-bearcub/blog/markdown-syntax/Mon, 11 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/markdown-syntax/<p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p> \ No newline at end of file diff --git a/categories/themes/index.html b/categories/themes/index.html new file mode 100644 index 0000000..dbee516 --- /dev/null +++ b/categories/themes/index.html @@ -0,0 +1,6 @@ +themes | Example Site

Example Site

Filtering for "themes"

\ No newline at end of file diff --git a/categories/themes/index.xml b/categories/themes/index.xml new file mode 100644 index 0000000..b652728 --- /dev/null +++ b/categories/themes/index.xml @@ -0,0 +1 @@ +themes on Example Sitehttps://clente.github.io/hugo-bearcub/categories/themes/Recent content in themes on Example SiteHugo -- gohugo.ioen-USJohn Doe (CC BY 4.0)Mon, 11 Mar 2019 00:00:00 +0000Markdown Syntax Guidehttps://clente.github.io/hugo-bearcub/blog/markdown-syntax/Mon, 11 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/markdown-syntax/<p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p> \ No newline at end of file diff --git a/en/index.html b/en/index.html new file mode 100644 index 0000000..8a49e5b --- /dev/null +++ b/en/index.html @@ -0,0 +1 @@ +https://clente.github.io/hugo-bearcub/ \ No newline at end of file diff --git a/en/sitemap.xml b/en/sitemap.xml new file mode 100644 index 0000000..0ec6d47 --- /dev/null +++ b/en/sitemap.xml @@ -0,0 +1 @@ +https://clente.github.io/hugo-bearcub/2019-03-11T00:00:00+00:00https://clente.github.io/hugo-bearcub/blog/2019-03-11T00:00:00+00:00https://clente.github.io/hugo-bearcub/categories/2019-03-11T00:00:00+00:00https://clente.github.io/hugo-bearcub/tags/css/2019-03-11T00:00:00+00:00https://clente.github.io/hugo-bearcub/tags/html/2019-03-11T00:00:00+00:00https://clente.github.io/hugo-bearcub/tags/markdown/2019-03-11T00:00:00+00:00https://clente.github.io/hugo-bearcub/blog/markdown-syntax/2019-03-11T00:00:00+00:00https://clente.github.io/hugo-bearcub/categories/syntax/2019-03-11T00:00:00+00:00https://clente.github.io/hugo-bearcub/tags/2019-03-11T00:00:00+00:00https://clente.github.io/hugo-bearcub/categories/themes/2019-03-11T00:00:00+00:00https://clente.github.io/hugo-bearcub/tags/privacy/2019-03-10T00:00:00+00:00https://clente.github.io/hugo-bearcub/blog/rich-content/2019-03-10T00:00:00+00:00https://clente.github.io/hugo-bearcub/tags/shortcodes/2019-03-10T00:00:00+00:00https://clente.github.io/hugo-bearcub/blog/placeholder-text/2019-03-09T00:00:00+00:00https://clente.github.io/hugo-bearcub/tags/text/2019-03-09T00:00:00+00:00https://clente.github.io/hugo-bearcub/blog/math-typesetting/2019-03-08T00:00:00+00:00https://clente.github.io/hugo-bearcub/tags/emoji/2019-03-05T00:00:00+00:00https://clente.github.io/hugo-bearcub/blog/emoji-support/2019-03-05T00:00:00+00:00 \ No newline at end of file diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..5f67af6 Binary files /dev/null and b/favicon.ico differ diff --git a/images/favicon.png b/images/favicon.png new file mode 100644 index 0000000..a3ef781 Binary files /dev/null and b/images/favicon.png differ diff --git a/images/share.png b/images/share.png new file mode 100644 index 0000000..a08d93e Binary files /dev/null and b/images/share.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..391ef93 --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ +Home | Example Site

Example Site

Say hello to Bear Cub!

Today’s websites are bloated, slow, and full of scripts, ads, and trackers. This +became so commonplace that we lost all sense of perspective, to the point that +we now think multi-megabyte webpages are normal.

The internet has become a bloated mess. Huge JavaScript libraries, countless +client-side queries and overly complex frontend frameworks are par for the +course these days.

Kev Quirk

Let’s change this one website at a time! Bear Cub is a +Hugo theme based on Hugo +Bear that takes care of speed and +optimization, so you can focus on writing good content.

It is free, multilingual, optimized for search engines, no-nonsense, +responsive, light, and fast. Really fast.

Additionally, when compared to its predecessor, Bear Cub was made with +privacy, +security and +accessibility +in mind. For more details on how to ensure your website keeps following these +guidelines, check out my blog.

Made with 💟 by Caio lente.

\ No newline at end of file diff --git a/index.xml b/index.xml new file mode 100644 index 0000000..7231e15 --- /dev/null +++ b/index.xml @@ -0,0 +1 @@ +Home on Example Sitehttps://clente.github.io/hugo-bearcub/Recent content in Home on Example SiteHugo -- gohugo.ioen-USJohn Doe (CC BY 4.0)Mon, 11 Mar 2019 00:00:00 +0000Markdown Syntax Guidehttps://clente.github.io/hugo-bearcub/blog/markdown-syntax/Mon, 11 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/markdown-syntax/<p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p>Rich Contenthttps://clente.github.io/hugo-bearcub/blog/rich-content/Sun, 10 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/rich-content/<p>Hugo ships with several <a href="https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes">Built-in Shortcodes</a> for rich content, along with a <a href="https://gohugo.io/about/hugo-and-gdpr/">Privacy Config</a> and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.</p>Placeholder Texthttps://clente.github.io/hugo-bearcub/blog/placeholder-text/Sat, 09 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/placeholder-text/<p>Lorem est tota propiore conpellat pectoribus de pectora summo.</p>Math Typesettinghttps://clente.github.io/hugo-bearcub/blog/math-typesetting/Fri, 08 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/math-typesetting/<p>Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.</p>Emoji Supporthttps://clente.github.io/hugo-bearcub/blog/emoji-support/Tue, 05 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/emoji-support/<p>Emoji can be enabled in a Hugo project in a number of ways.</p> \ No newline at end of file diff --git a/pt/404.html b/pt/404.html new file mode 100644 index 0000000..e28ed47 --- /dev/null +++ b/pt/404.html @@ -0,0 +1,5 @@ +404

Site Exemplo

404

ʕノ•ᴥ•ʔノ ︵ ┻━┻

\ No newline at end of file diff --git a/pt/blog/index.html b/pt/blog/index.html new file mode 100644 index 0000000..ea1a79f --- /dev/null +++ b/pt/blog/index.html @@ -0,0 +1,5 @@ +Blog | Site Exemplo

Site Exemplo

  • Nenhum post ainda
\ No newline at end of file diff --git a/pt/blog/index.xml b/pt/blog/index.xml new file mode 100644 index 0000000..3c010a7 --- /dev/null +++ b/pt/blog/index.xml @@ -0,0 +1 @@ +Blog on Site Exemplohttps://clente.github.io/hugo-bearcub/pt/blog/Recent content in Blog on Site ExemploHugo -- gohugo.iopt-BRJohn Doe (CC BY 4.0) \ No newline at end of file diff --git a/pt/categories/index.html b/pt/categories/index.html new file mode 100644 index 0000000..e43f641 --- /dev/null +++ b/pt/categories/index.html @@ -0,0 +1,5 @@ +Categories | Site Exemplo

Site Exemplo

Filtrando para "Categories"

  • Nenhum post ainda
\ No newline at end of file diff --git a/pt/categories/index.xml b/pt/categories/index.xml new file mode 100644 index 0000000..1d47dd4 --- /dev/null +++ b/pt/categories/index.xml @@ -0,0 +1 @@ +Categories on Site Exemplohttps://clente.github.io/hugo-bearcub/pt/categories/Recent content in Categories on Site ExemploHugo -- gohugo.iopt-BRJohn Doe (CC BY 4.0) \ No newline at end of file diff --git a/pt/index.html b/pt/index.html new file mode 100644 index 0000000..1484f20 --- /dev/null +++ b/pt/index.html @@ -0,0 +1,18 @@ +Início | Site Exemplo

Site Exemplo

Diga oi para o Bear Cub!

Os sites de hoje em dia são pesados, lentos e cheios de scripts, propagandas e +rastreadores. Isso ficou tão comum que nós perdemos toda a perspectiva, tanto +que achamos normal uma página web ter vários megabytes.

The internet has become a bloated mess. Huge JavaScript libraries, countless +client-side queries and overly complex frontend frameworks are par for the +course these days.

Kev Quirk

Vamos mudar isso um site de cada vez! Bear Cub é um tema +Hugo baseado no Hugo +Bear que tema conta da velocidade +e otimização para que você possa focar em escrever bons textos.

Ele é gratuito, multilíngue, otimizado para buscadores, direto, responsivo, leve +e rápido. Muito rápido.

Além disso, quando comparado ao seu predecessor, o Bear Cub foi feito com +privacidade, +segurança e +acessibilidade +em mente. Para garantir que o seu site continue seguindo esses princípios, dê +uma olhada no meu blog.

Feito com 💟 por Caio lente.

\ No newline at end of file diff --git a/pt/index.xml b/pt/index.xml new file mode 100644 index 0000000..8f3de52 --- /dev/null +++ b/pt/index.xml @@ -0,0 +1 @@ +Início on Site Exemplohttps://clente.github.io/hugo-bearcub/pt/Recent content in Início on Site ExemploHugo -- gohugo.iopt-BRJohn Doe (CC BY 4.0) \ No newline at end of file diff --git a/pt/sitemap.xml b/pt/sitemap.xml new file mode 100644 index 0000000..99d33b2 --- /dev/null +++ b/pt/sitemap.xml @@ -0,0 +1 @@ +https://clente.github.io/hugo-bearcub/pt/https://clente.github.io/hugo-bearcub/pt/blog/https://clente.github.io/hugo-bearcub/pt/categories/https://clente.github.io/hugo-bearcub/pt/tags/ \ No newline at end of file diff --git a/pt/tags/index.html b/pt/tags/index.html new file mode 100644 index 0000000..2dd8db3 --- /dev/null +++ b/pt/tags/index.html @@ -0,0 +1,5 @@ +Tags | Site Exemplo

Site Exemplo

Filtrando para "Tags"

  • Nenhum post ainda
\ No newline at end of file diff --git a/pt/tags/index.xml b/pt/tags/index.xml new file mode 100644 index 0000000..931a04b --- /dev/null +++ b/pt/tags/index.xml @@ -0,0 +1 @@ +Tags on Site Exemplohttps://clente.github.io/hugo-bearcub/pt/tags/Recent content in Tags on Site ExemploHugo -- gohugo.iopt-BRJohn Doe (CC BY 4.0) \ No newline at end of file diff --git a/robots.txt b/robots.txt new file mode 100644 index 0000000..4076b0d --- /dev/null +++ b/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Allow: / +Sitemap: https://clente.github.io/hugo-bearcub/sitemap.xml diff --git a/sitemap.xml b/sitemap.xml new file mode 100644 index 0000000..6020f56 --- /dev/null +++ b/sitemap.xml @@ -0,0 +1 @@ +https://clente.github.io/hugo-bearcub/en/sitemap.xml2019-03-11T00:00:00+00:00https://clente.github.io/hugo-bearcub/pt/sitemap.xml \ No newline at end of file diff --git a/style.min.css b/style.min.css new file mode 100644 index 0000000..1657be3 --- /dev/null +++ b/style.min.css @@ -0,0 +1 @@ +body{font-family:Verdana,sans-serif;margin:auto;padding:20px;max-width:720px;text-align:left;background-color:#1d1f27;word-wrap:break-word;overflow-wrap:break-word;line-height:1.5;color:#c9d1d9}h1,h2,h3,h4,h5,h6,strong,b{color:#eee}a{color:#8cc2dd}.title{text-decoration:none;border:0}.title span{font-weight:400}nav a{margin-right:10px}textarea{background-color:#252525;color:#ddd;width:100%;font-size:16px}input{background-color:#252525;color:#ddd;font-size:16px}content{line-height:1.6}table{width:100%}table,th,td{border:1px solid;border-collapse:collapse;border-color:#c9d1d9;padding:5px}img{max-width:100%}code{padding:2px 5px}pre code{display:block;padding:20px;white-space:pre-wrap;font-size:14px;overflow-x:auto}blockquote{border-left:1px solid #999;color:#ccc;padding-left:20px;font-style:italic}footer{padding:25px;text-align:center}.helptext{color:#aaa;font-size:small}.errorlist{color:#eba613;font-size:small}ul.blog-posts{list-style-type:none;padding:unset}ul.blog-posts li{display:flex;line-height:2.1}ul.blog-posts li span{flex:0 0 130px}ul.blog-posts li a:visited{color:#8b6fcb}a.blog-tags{line-height:2}h3.blog-filter{margin-bottom:0}.disabled{color:currentColor;cursor:not-allowed;opacity:.5} \ No newline at end of file diff --git a/syntax.min.css b/syntax.min.css new file mode 100644 index 0000000..bff1d80 --- /dev/null +++ b/syntax.min.css @@ -0,0 +1 @@ +.bg{color:#f8f8f2;background-color:#282a36}.chroma{color:#f8f8f2;background-color:#282a36}.chroma .lnlinks{outline:none;text-decoration:none;color:inherit}.chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}.chroma .lntable{border-spacing:0;padding:0;margin:0;border:0}.chroma .hl{background-color:#ffc}.chroma .lnt{white-space:pre;user-select:none;margin-right:.4em;padding:0 .4em;color:#929292}.chroma .ln{white-space:pre;user-select:none;margin-right:.4em;padding:0 .4em;color:#929292}.chroma .line{display:flex}.chroma .k{color:#ff79c6}.chroma .kc{color:#ff79c6}.chroma .kd{color:#8be9fd;font-style:italic}.chroma .kn{color:#ff79c6}.chroma .kp{color:#ff79c6}.chroma .kr{color:#ff79c6}.chroma .kt{color:#8be9fd}.chroma .na{color:#50fa7b}.chroma .nb{color:#8be9fd;font-style:italic}.chroma .nc{color:#50fa7b}.chroma .nf{color:#50fa7b}.chroma .nl{color:#8be9fd;font-style:italic}.chroma .nt{color:#ff79c6}.chroma .nv{color:#8be9fd;font-style:italic}.chroma .vc{color:#8be9fd;font-style:italic}.chroma .vg{color:#8be9fd;font-style:italic}.chroma .vi{color:#8be9fd;font-style:italic}.chroma .s{color:#f1fa8c}.chroma .sa{color:#f1fa8c}.chroma .sb{color:#f1fa8c}.chroma .sc{color:#f1fa8c}.chroma .dl{color:#f1fa8c}.chroma .sd{color:#f1fa8c}.chroma .s2{color:#f1fa8c}.chroma .se{color:#f1fa8c}.chroma .sh{color:#f1fa8c}.chroma .si{color:#f1fa8c}.chroma .sx{color:#f1fa8c}.chroma .sr{color:#f1fa8c}.chroma .s1{color:#f1fa8c}.chroma .ss{color:#f1fa8c}.chroma .m{color:#bd93f9}.chroma .mb{color:#bd93f9}.chroma .mf{color:#bd93f9}.chroma .mh{color:#bd93f9}.chroma .mi{color:#bd93f9}.chroma .il{color:#bd93f9}.chroma .mo{color:#bd93f9}.chroma .o{color:#ff79c6}.chroma .ow{color:#ff79c6}.chroma .c{color:#7c90d0}.chroma .ch{color:#7c90d0}.chroma .cm{color:#7c90d0}.chroma .c1{color:#7c90d0}.chroma .cs{color:#7c90d0}.chroma .cp{color:#ff79c6}.chroma .cpf{color:#ff79c6}.chroma .gd{color:#f55}.chroma .ge{text-decoration:underline}.chroma .gh{font-weight:700}.chroma .gi{color:#50fa7b;font-weight:700}.chroma .go{color:#44475a}.chroma .gu{font-weight:700}.chroma .gl{text-decoration:underline} \ No newline at end of file diff --git a/tags/css/index.html b/tags/css/index.html new file mode 100644 index 0000000..e5a231c --- /dev/null +++ b/tags/css/index.html @@ -0,0 +1,6 @@ +css | Example Site

Example Site

Filtering for "css"

\ No newline at end of file diff --git a/tags/css/index.xml b/tags/css/index.xml new file mode 100644 index 0000000..c0ae8ef --- /dev/null +++ b/tags/css/index.xml @@ -0,0 +1 @@ +css on Example Sitehttps://clente.github.io/hugo-bearcub/tags/css/Recent content in css on Example SiteHugo -- gohugo.ioen-USJohn Doe (CC BY 4.0)Mon, 11 Mar 2019 00:00:00 +0000Markdown Syntax Guidehttps://clente.github.io/hugo-bearcub/blog/markdown-syntax/Mon, 11 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/markdown-syntax/<p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p> \ No newline at end of file diff --git a/tags/emoji/index.html b/tags/emoji/index.html new file mode 100644 index 0000000..da7cde9 --- /dev/null +++ b/tags/emoji/index.html @@ -0,0 +1,6 @@ +emoji | Example Site

Example Site

Filtering for "emoji"

\ No newline at end of file diff --git a/tags/emoji/index.xml b/tags/emoji/index.xml new file mode 100644 index 0000000..21539ca --- /dev/null +++ b/tags/emoji/index.xml @@ -0,0 +1 @@ +emoji on Example Sitehttps://clente.github.io/hugo-bearcub/tags/emoji/Recent content in emoji on Example SiteHugo -- gohugo.ioen-USJohn Doe (CC BY 4.0)Tue, 05 Mar 2019 00:00:00 +0000Emoji Supporthttps://clente.github.io/hugo-bearcub/blog/emoji-support/Tue, 05 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/emoji-support/<p>Emoji can be enabled in a Hugo project in a number of ways.</p> \ No newline at end of file diff --git a/tags/html/index.html b/tags/html/index.html new file mode 100644 index 0000000..48763cf --- /dev/null +++ b/tags/html/index.html @@ -0,0 +1,6 @@ +html | Example Site

Example Site

Filtering for "html"

\ No newline at end of file diff --git a/tags/html/index.xml b/tags/html/index.xml new file mode 100644 index 0000000..d2af32f --- /dev/null +++ b/tags/html/index.xml @@ -0,0 +1 @@ +html on Example Sitehttps://clente.github.io/hugo-bearcub/tags/html/Recent content in html on Example SiteHugo -- gohugo.ioen-USJohn Doe (CC BY 4.0)Mon, 11 Mar 2019 00:00:00 +0000Markdown Syntax Guidehttps://clente.github.io/hugo-bearcub/blog/markdown-syntax/Mon, 11 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/markdown-syntax/<p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p> \ No newline at end of file diff --git a/tags/index.html b/tags/index.html new file mode 100644 index 0000000..9ba240b --- /dev/null +++ b/tags/index.html @@ -0,0 +1,12 @@ +Tags | Example Site

Example Site

Filtering for "Tags"

\ No newline at end of file diff --git a/tags/index.xml b/tags/index.xml new file mode 100644 index 0000000..d36831e --- /dev/null +++ b/tags/index.xml @@ -0,0 +1 @@ +Tags on Example Sitehttps://clente.github.io/hugo-bearcub/tags/Recent content in Tags on Example SiteHugo -- gohugo.ioen-USJohn Doe (CC BY 4.0)Mon, 11 Mar 2019 00:00:00 +0000csshttps://clente.github.io/hugo-bearcub/tags/css/Mon, 11 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/tags/css/htmlhttps://clente.github.io/hugo-bearcub/tags/html/Mon, 11 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/tags/html/markdownhttps://clente.github.io/hugo-bearcub/tags/markdown/Mon, 11 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/tags/markdown/privacyhttps://clente.github.io/hugo-bearcub/tags/privacy/Sun, 10 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/tags/privacy/shortcodeshttps://clente.github.io/hugo-bearcub/tags/shortcodes/Sun, 10 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/tags/shortcodes/texthttps://clente.github.io/hugo-bearcub/tags/text/Sat, 09 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/tags/text/emojihttps://clente.github.io/hugo-bearcub/tags/emoji/Tue, 05 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/tags/emoji/ \ No newline at end of file diff --git a/tags/markdown/index.html b/tags/markdown/index.html new file mode 100644 index 0000000..20c7ed6 --- /dev/null +++ b/tags/markdown/index.html @@ -0,0 +1,7 @@ +markdown | Example Site

Example Site

Filtering for "markdown"

\ No newline at end of file diff --git a/tags/markdown/index.xml b/tags/markdown/index.xml new file mode 100644 index 0000000..c0a4b36 --- /dev/null +++ b/tags/markdown/index.xml @@ -0,0 +1 @@ +markdown on Example Sitehttps://clente.github.io/hugo-bearcub/tags/markdown/Recent content in markdown on Example SiteHugo -- gohugo.ioen-USJohn Doe (CC BY 4.0)Mon, 11 Mar 2019 00:00:00 +0000Markdown Syntax Guidehttps://clente.github.io/hugo-bearcub/blog/markdown-syntax/Mon, 11 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/markdown-syntax/<p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p>Placeholder Texthttps://clente.github.io/hugo-bearcub/blog/placeholder-text/Sat, 09 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/placeholder-text/<p>Lorem est tota propiore conpellat pectoribus de pectora summo.</p> \ No newline at end of file diff --git a/tags/privacy/index.html b/tags/privacy/index.html new file mode 100644 index 0000000..b1f9360 --- /dev/null +++ b/tags/privacy/index.html @@ -0,0 +1,6 @@ +privacy | Example Site

Example Site

Filtering for "privacy"

\ No newline at end of file diff --git a/tags/privacy/index.xml b/tags/privacy/index.xml new file mode 100644 index 0000000..881677f --- /dev/null +++ b/tags/privacy/index.xml @@ -0,0 +1 @@ +privacy on Example Sitehttps://clente.github.io/hugo-bearcub/tags/privacy/Recent content in privacy on Example SiteHugo -- gohugo.ioen-USJohn Doe (CC BY 4.0)Sun, 10 Mar 2019 00:00:00 +0000Rich Contenthttps://clente.github.io/hugo-bearcub/blog/rich-content/Sun, 10 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/rich-content/<p>Hugo ships with several <a href="https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes">Built-in Shortcodes</a> for rich content, along with a <a href="https://gohugo.io/about/hugo-and-gdpr/">Privacy Config</a> and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.</p> \ No newline at end of file diff --git a/tags/shortcodes/index.html b/tags/shortcodes/index.html new file mode 100644 index 0000000..8444e7f --- /dev/null +++ b/tags/shortcodes/index.html @@ -0,0 +1,6 @@ +shortcodes | Example Site

Example Site

Filtering for "shortcodes"

\ No newline at end of file diff --git a/tags/shortcodes/index.xml b/tags/shortcodes/index.xml new file mode 100644 index 0000000..45db608 --- /dev/null +++ b/tags/shortcodes/index.xml @@ -0,0 +1 @@ +shortcodes on Example Sitehttps://clente.github.io/hugo-bearcub/tags/shortcodes/Recent content in shortcodes on Example SiteHugo -- gohugo.ioen-USJohn Doe (CC BY 4.0)Sun, 10 Mar 2019 00:00:00 +0000Rich Contenthttps://clente.github.io/hugo-bearcub/blog/rich-content/Sun, 10 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/rich-content/<p>Hugo ships with several <a href="https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes">Built-in Shortcodes</a> for rich content, along with a <a href="https://gohugo.io/about/hugo-and-gdpr/">Privacy Config</a> and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.</p> \ No newline at end of file diff --git a/tags/text/index.html b/tags/text/index.html new file mode 100644 index 0000000..a8c6717 --- /dev/null +++ b/tags/text/index.html @@ -0,0 +1,6 @@ +text | Example Site

Example Site

Filtering for "text"

\ No newline at end of file diff --git a/tags/text/index.xml b/tags/text/index.xml new file mode 100644 index 0000000..7ff6360 --- /dev/null +++ b/tags/text/index.xml @@ -0,0 +1 @@ +text on Example Sitehttps://clente.github.io/hugo-bearcub/tags/text/Recent content in text on Example SiteHugo -- gohugo.ioen-USJohn Doe (CC BY 4.0)Sat, 09 Mar 2019 00:00:00 +0000Placeholder Texthttps://clente.github.io/hugo-bearcub/blog/placeholder-text/Sat, 09 Mar 2019 00:00:00 +0000https://clente.github.io/hugo-bearcub/blog/placeholder-text/<p>Lorem est tota propiore conpellat pectoribus de pectora summo.</p> \ No newline at end of file