diff --git a/exampleSite/config/_default/languages.es.toml b/exampleSite/config/_default/languages.es.toml new file mode 100644 index 00000000..6bcac9f4 --- /dev/null +++ b/exampleSite/config/_default/languages.es.toml @@ -0,0 +1,28 @@ +languageCode = "es-mx" +languageName = "Español (México)" +weight = 2 + +title = "Congo" +copyright = "© 2023 Congo contributors" + +[params] + isoCode = "es-MX" + displayName = ":flag-mx:" + rtl = false + + dateFormat = "2 January 2006" + + mainSections = ["samples"] + description = "Un tema poderoso y liviano para Hugo creado con Tailwind CSS." + +[author] + name = "Congo" + image = "img/author.jpg" + headline = "¡No es tu tema ordinario!" + bio = "Esta es una biografía de autor de ejemplo, y aunque aquí hay una foto de un perro, este artículo en realidad fue creado por un ser humano. :dog:" + links = [ + { twitter = "https://twitter.com/" }, + { facebook = "https://facebook.com/" }, + { linkedin = "https://linkedin.com/" }, + { youtube = "https://youtube.com/" }, + ] diff --git a/exampleSite/config/_default/menus.es.toml b/exampleSite/config/_default/menus.es.toml new file mode 100644 index 00000000..beeed91a --- /dev/null +++ b/exampleSite/config/_default/menus.es.toml @@ -0,0 +1,50 @@ +# -- Main Menu -- +# The main menu is displayed in the header at the top of the page. +# Acceptable parameters are name, pageRef, page, url, title, weight. +# +# The simplest menu configuration is to provide: +# name = The name to be displayed for this menu link +# pageRef = The identifier of the page or section to link to +# +# By default the menu is ordered alphabetically. This can be +# overridden by providing a weight value. The menu will then be +# ordered by weight from lowest to highest. + +[[main]] + name = "Docs" + url = "/docs" + weight = 10 + +[[main]] + name = "Ejemplos" + pageRef = "samples" + weight = 20 + +[[main]] + name = "Usuarios" + pageRef = "users" + weight = 30 + +[[main]] + name = "GitHub" + url = "https://github.com/jpanther/congo" + weight = 40 + [main.params] + icon = "github" + showName = false + target = "_blank" + +[[main]] + identifier = "search" + weight = 99 + [main.params] + action = "search" + +# -- Footer Menu -- +# The footer menu is displayed at the bottom of the page, just before +# the copyright notice. Configure as per the main menu above. + +# [[footer]] +# name = "Tags" +# pageRef = "tags" +# weight = 10 diff --git a/exampleSite/content/_index.es.md b/exampleSite/content/_index.es.md new file mode 100755 index 00000000..4d4584c6 --- /dev/null +++ b/exampleSite/content/_index.es.md @@ -0,0 +1,29 @@ +--- +title: "¡Bienvenido a Congo! :tada:" +description: "Esta es una demostración del tema Congo para Hugo." +--- + +{{< lead >}} +Un tema poderoso y liviano para Hugo creado con Tailwind CSS. +{{< /lead >}} + +Este es un sitio de demostración creado completamente con Congo. También contiene un conjunto completo de artículos con [documentación del tema]({{< ref path="docs" lang="en" >}}). Congo es flexible y es excelente tanto para contenido estático basado en páginas (como es el caso de esta demostración) como para un blog tradicional con un feed de publicaciones recientes. + +
page
+
+
+Test
+ + +``` + +### Bloque de código indentado con cuatro espacios + + + + + +Test
+ + + +### Bloque de código con resaltado usando el shortcode interno de Hugo + +{{< highlight html "linenos=table,hl_lines=4 7-9" >}} + + + + + +Test
+ + +{{< /highlight >}} + +## Tipos de lista + +### Lista ordenada + +1. Primer artículo +2. Segundo artículo +3. Tercer artículo + +### Lista desordenada + +- Elemento de la lista +- Otro artículo +- Un artículo más + +### Lista anidada + +- Fruta + - Manzana + - Naranja + - Platano +- Lácteos + - Leche + - Queso + +## Otros elementos — abbr, sub, sup, kbd, mark + +GIF es un formato de imagen de mapa de bits. + +H2O + +Xn + Yn = Zn + +Presiona CTRL+ALT+Delete para terminar la sesión. + +La mayoría de las salamandras son nocturnas y cazan insectos, gusanos y otras criaturas pequeñas. diff --git a/exampleSite/content/samples/mathematical-notation/index.es.md b/exampleSite/content/samples/mathematical-notation/index.es.md new file mode 100755 index 00000000..d9f77b8f --- /dev/null +++ b/exampleSite/content/samples/mathematical-notation/index.es.md @@ -0,0 +1,46 @@ +--- +title: Notación matemática +date: 2019-03-08 +description: Una breve muestra de notación matemática en Congo. +tags: ["sample", "katex", "maths", "shortcodes"] +--- + +Una breve muestra de notación matemática en Congo. + + + +{{< katex >}} + +Congo solo incluirá los assets de KaTeX en su proyecto si utiliza notación matemática. Para que esto funcione, simplemente incluya el [`katex` shortcode]({{< ref path="docs/shortcodes#katex" lang="en" >}}) dentro del artículo. Cualquier sintaxis de KaTeX en esa página se renderizará automáticamente. + +Utilice la documentación en línea de [funciones TeX admitidas](https://katex.org/docs/supported.html) para conocer la sintaxis disponible. + +## Notación en línea + +La notación en línea se puede generar envolviendo la expresión en los delimitadores `\\(` y `\\)`. + +**Ejemplo:** + +```tex +% KaTeX notación en línea +Notación en línea: \\(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\\) +``` + +Notación en línea: \\(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\\) + +## Notación en bloque + +Alternativamente, la notación en bloque se puede generar usando delimitadores `$$`. Esto generará la expresión en su propio bloque HTML. + +**Ejemplo:** + +```tex +% KaTeX notación en bloque +$$ + \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } } +$$ +``` + +$$ + \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } } +$$ diff --git a/exampleSite/content/samples/placeholder-text/index.es.md b/exampleSite/content/samples/placeholder-text/index.es.md new file mode 100755 index 00000000..53346399 --- /dev/null +++ b/exampleSite/content/samples/placeholder-text/index.es.md @@ -0,0 +1,39 @@ +--- +title: "Placeholder Text" +date: "2019-03-09" +lastmod: "2022-01-24" +draft: true +description: "Lorem Ipsum Dolor Si Amet" +tags: ["markdown", "text", "sample", "latin"] +showDateUpdated: true +xml: false +--- + +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](https://en.wikipedia.org/wiki/Canons_of_page_construction#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**. diff --git a/exampleSite/content/samples/rich-content/index.es.md b/exampleSite/content/samples/rich-content/index.es.md new file mode 100755 index 00000000..43cd50c7 --- /dev/null +++ b/exampleSite/content/samples/rich-content/index.es.md @@ -0,0 +1,37 @@ +--- +title: "Contenido enriquecido" +date: 2019-03-10 +description: "Una breve descripción de los shortcuts de Hugo" +summary: "Este es un _ejemplo_ de un resumen de contenido **enriquecido**." +coverAlt: "Una imagen de portada de ejemplo que muestra logos de algunas redes sociales populares." +coverCaption: "Este es un ejemplo de pie de foto para una portada." +tags: ["shortcodes", "privacy", "sample", "gist", "twitter", "youtube", "vimeo"] +--- + +Hugo viene con varios [shortcuts integrados](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes) para hacer contenido enriquecido, junto con una [configuración de privacidad](https://gohugo.io/about/hugo-and-gdpr/) y un conjunto de _shortcuts simples_ que permiten incrustar versiones estáticas y sin Javascript de varias redes sociales. + +## YouTube + +A continuación, se muestra un ejemplo que utiliza el shortcut integrado `youtube`. + +{{< youtube ZJthWmvUzzc >}} + +## Twitter + +Este ejemplo usa el shortcode `twitter_simple` para generar un Tweet. Requiere dos parámetros por nombre: `usuario` e `id`. + +{{< twitter_simple user="DesignReviewed" id="1085870671291310081" >}} + +Alternativamente, el shortcut `tweet` se puede usar para incrustar una tarjeta completa de Twitter. + +## Gist + +El shortcode `gist` se puede usar para incrustar un GitHub Gist. Requiere dos parámetros por posición: el nombre de usuario y el ID del Gist. + +{{< gist jpanther a873e1219ffeaa80a926bbe8255f348e >}} + +## Vimeo + +El shortcode `vimeo_simple` insertará un video de Vimeo. + +{{< vimeo_simple 48912912 >}} diff --git a/exampleSite/content/tags/_index.es.md b/exampleSite/content/tags/_index.es.md new file mode 100644 index 00000000..c8af4155 --- /dev/null +++ b/exampleSite/content/tags/_index.es.md @@ -0,0 +1,9 @@ +--- +title: Etiquetas +--- + +Congo tiene soporte total para las taxonomías de Hugo y se adaptará a cualquier configuración de taxonomía. Las listas de taxonomías como esta también admiten contenido personalizado que se muestra encima de la lista de términos. + +Esta área podría usarse para agregar texto descriptivo adicional a cada taxonomía. Consulte el ejemplo de [etiquetas avanzadas]({{< ref path="advanced" >}}) a continuación para ver cómo llevar este concepto aún más lejos. + +--- diff --git a/exampleSite/content/tags/advanced/_index.es.md b/exampleSite/content/tags/advanced/_index.es.md new file mode 100644 index 00000000..a572a3a6 --- /dev/null +++ b/exampleSite/content/tags/advanced/_index.es.md @@ -0,0 +1,7 @@ +--- +title: Avanzada +--- + +Esta es la etiqueta avanzada. Al igual que otras páginas de listas en Congo, puede agregar contenido personalizado a los términos taxonómicos individuales y se mostrará en la parte superior de la lista de términos. :rocket: + +También puedes usar estas páginas de contenido para definir metadatos de Hugo como títulos y descripciones que se usarán para SEO y otros fines. diff --git a/exampleSite/content/users/index.es.md b/exampleSite/content/users/index.es.md new file mode 100644 index 00000000..1fc9ea46 --- /dev/null +++ b/exampleSite/content/users/index.es.md @@ -0,0 +1,73 @@ +--- +title: "Usuarios" +date: 2020-08-14 +draft: false +description: "Algunos ejemplos reales de Congo." +slug: "users" +tags: ["users", "sample"] +showDate: false +showAuthor: false +showReadingTime: false +showEdit: false +--- + +{{< lead >}} +Sitios web reales que se han creado con Congo. +{{< /lead >}} + +La lista a continuación es solo un puñado de sitios web creados con el tema Congo. Échales un vistazo para descubrir algunos excelentes ejemplos de lo que el tema puede hacer. + +| Website | Detalles | +| ---------------------------------------------------------------------- | ------------------------------- | +| [jamespanther.com](https://jamespanther.com) | Personal site - Theme author | +| [antoinesoetewey.com](https://antoinesoetewey.com/) | Personal site | +| [leif.io](https://leif.io/) | Personal site and Tech blog | +| [dr460nf1r3.org](https://dr460nf1r3.org/) | Personal site and Blog | +| [OCram85.com](https://ocram85.com) | Personal site and Blog | +| [mackiser.github.io](https://mackiser.github.io) | Personal site and Blog | +| [jamesmillner.dev](https://jamesmillner.dev) | Personal site and Blog | +| [jeremic.ca](https://jeremic.ca) | Personal site and Blog | +| [rohn.tech](https://rohn.tech) | Personal site | +| [klimafreundlicher-kochen.de](https://www.klimafreundlicher-kochen.de) | Food blog (in German) | +| [seyslee.github.io](https://seyslee.github.io) | Tech blog (in Korean) | +| [datanalyze.be](https://datanalyze.be/) | Professional site | +| [sneaky-potato.github.io](https://sneaky-potato.github.io/) | Professional site and Blog | +| [kelset.dev](https://kelset.dev) | Personal site | +| [docteurelsavancaster.com](https://docteurelsavancaster.com/) | Professional site | +| [ruihao-li.github.io](https://ruihao-li.github.io/) | Personal site and Blog | +| [phalanxhead.dev](https://phalanxhead.dev) | Personal site and Blog | +| [Bible Multi Apps](https://hotlittlewhitedog.gitlab.io/biblemulti) | Personal site and Blog | +| [Jh123x](https://jh123x.com/) | Personal site and Blog | +| [sforzando LLC. and Inc.](https://sfz.dev/) | Corporate site and Blog | +| [aidansmith.me](https://aidansmith.me/) | Personal Site | +| [nunocoracao.com](https://nunocoracao.com) | Personal site and Blog | +| [szegedkungfu.hu](https://balance-se.github.io/) | Sports association site | +| [jcransom.com](https://www.jcransom.com/) | Personal Site and Blog | +| [cbrincoveanu.com](https://www.cbrincoveanu.com/) | Personal site and Blog | +| [medical-humanities](https://medical-humanities.org) | Academic site | +| [boyersnet.com](https://boyersnet.com) | Personal site and Blog | +| [major.io](https://major.io) | Personal site and Blog | +| [bayas.dev](https://bayas.dev) | Personal site and Blog | +| [顾宇的博客](https://www.guyu.me/) | Personal Blog (in Chinese) | +| [cgutierr-zgz.github.io](https://cgutierr-zgz.github.io/) | Personal site and Tech blog | +| [adam.sr](https://adam.sr) | Personal site and Blog | +| [datadi.murgi.org](https://datadi.murgi.org) | Personal site and Blog | +| [shim.web.id](https://shim.web.id) | Personal Blog (in Indonesian) | +| [kpavlov.me](https://kpavlov.me) | Personal site and Blog | +| [pfisterer.dev](https://pfisterer.dev) | Personal site and Blog | +| [davidrothera.me](https://davidrothera.me) | Personal site and Blog | +| [ethantroy.com](https://ethantroy.com) | Personal Site and Blog | +| [sug.bitprism.net](https://sug.bitprism.net) | Personal Site and Blog | +| [arjuns.me](https://arjuns.me) | Personal Site and Blog | +| [statistix.be](https://statistix.be/) | Professional site | +| [sathyabh.at](https://sathyabh.at) | Personal Site and Blog | +| [leonidasv.com](https://leonidasv.com/) | Personal site and Blog | +| [andrew-jones.com](https://andrew-jones.com/) | Personal site and tech blog | +| [nikita.computer](https://nikita.computer/) | Personal site and tech blog | +| [blog.dejavu.moe](https://blog.dejavu.moe/) | Personal blog and weekly issues | +| [spiffyeight77.com](https://spiffyeight77.com/) | Personal blog | +| [Tomy's Blog](https://blog.tomy.me) | Personal site and Blog | +| [Beerjoa Blog](https://blog.beerjoa.dev) | Personal site and Blog | + + +**¿Usuaria de congo?** Para agregar tu sitio a esta lista, [haz un pull request](https://github.com/jpanther/congo/blob/dev/exampleSite/content/users/index.md).