-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Translate Configure Recent Posts in spanish
- Loading branch information
Showing
2 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
content/posts/configuration/sections/recent-posts/index.es.md
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,25 @@ | ||
--- | ||
title: "Configurando la sección de Publicaciones Recientes" | ||
date: 2020-06-08T06:20:34+06:00 | ||
menu: | ||
sidebar: | ||
name: Sección de Publicaciones Recientes | ||
identifier: recent-posts-section | ||
parent: sections | ||
weight: 150 | ||
--- | ||
|
||
La sección de `Publicaciones Recientes` sirve para mostrar las últimas publicaciones de tu contenido. Para habilitar esta sección, crea un archivo `recent-posts.yaml` dentro del directorio `data/en/sections` e incluye el siguiente contenido: | ||
|
||
```yaml | ||
# Información de la sección | ||
section: | ||
name: Publicaciones Recientes # Título de la sección | ||
id: recent-posts # id del url de la sección *se requiere* | ||
enable: true # Booleano que determina si la sección está activada (predeterminado: false) | ||
weight: 6 # Orden de la sección (predeterminado: alfabeticamente seguida del peso) | ||
showOnNavbar: true # Booleano que determina si el enlace de esta sección debe aparecer en la barra de navegación | ||
hideTitle: true # Opcionalmente puede ocultar el título del menú (predeterminado: false) | ||
numShow: 4 # Opcionalmente puede incrementar el número de publicaciones para mostrar (predeterminado: 3) | ||
showMoreButton: false # Opcionalmente puede mostrar el botón `Más publicaciones` (predeterminado: false) | ||
``` |
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# section information | ||
# Información de la sección | ||
section: | ||
name: Publicaciones Recientes | ||
id: recent-posts | ||
enable: true | ||
weight: 5 | ||
weight: 6 | ||
showOnNavbar: true | ||
# Can optionally hide the title in sections | ||
# Opcionalmente puede ocultar el título del menú | ||
# hideTitle: true | ||
|
||
# no additional configuration is required | ||
# No se requiere de configuración adicional |