Skip to content
Closed
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
16 changes: 16 additions & 0 deletions es/organize/pages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,22 @@ Usa el frontmatter para controlar:
Restringe la página a usuarios en grupos específicos. Los usuarios deben pertenecer a al menos uno de los grupos listados para acceder a la página. Primero debes configurar la [autenticación](/es/deploy/authentication-setup). Consulta [Controlar el acceso con grupos](/es/deploy/authentication-setup#control-access-with-groups) para más información.
</ResponseField>

<ResponseField name="related" type="false | array">
Personaliza las páginas relacionadas que se muestran al final de la página. De forma predeterminada, Mintlify sugiere automáticamente páginas relacionadas en función del contenido de la página.

- Establece `false` para ocultar la sección de páginas relacionadas en esta página.
- Proporciona un arreglo de rutas o URL para sustituir las sugerencias automáticas por una lista curada. Cada entrada puede ser una ruta relativa, una URL absoluta o un mapeo `Título: ruta` para establecer un título de enlace personalizado.

```yaml
---
related:
- /es/api-playground/overview
- Título personalizado: /es/organize/navigation
- https://mintlify.com/blog
---
```
</ResponseField>

<ResponseField name="<custom>" type="string">
Cualquier frontmatter YAML válido. Por ejemplo, `product: "API"` o `version: "1.0.0"`.
</ResponseField>
Expand Down
16 changes: 16 additions & 0 deletions fr/organize/pages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,22 @@ Utilisez le frontmatter pour contrôler :
Restreint la page aux utilisateurs appartenant à des groupes spécifiques. Les utilisateurs doivent appartenir à au moins un des groupes listés pour accéder à la page. Vous devez d'abord configurer l'[authentification](/fr/deploy/authentication-setup). Voir [Contrôler l'accès avec des groupes](/fr/deploy/authentication-setup#control-access-with-groups) pour plus d'informations.
</ResponseField>

<ResponseField name="related" type="false | array">
Personnalisez les pages connexes affichées en bas de la page. Par défaut, Mintlify suggère automatiquement des pages connexes en fonction du contenu de la page.

- Définissez `false` pour masquer la section des pages connexes sur cette page.
- Fournissez un tableau de chemins ou d'URL pour remplacer les suggestions automatiques par une liste sélectionnée. Chaque entrée peut être un chemin relatif, une URL absolue ou un mappage `Titre: chemin` pour définir un titre de lien personnalisé.

```yaml
---
related:
- /fr/api-playground/overview
- Titre personnalisé: /fr/organize/navigation
- https://mintlify.com/blog
---
```
</ResponseField>

<ResponseField name="<custom>" type="string">
Tout frontmatter YAML valide. Par exemple, `product: "API"` ou `version: "1.0.0"`.
</ResponseField>
Expand Down
16 changes: 16 additions & 0 deletions organize/pages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Use frontmatter to control:

- Page titles and descriptions
- Sidebar titles, icons, and tags

Check warning on line 16 in organize/pages.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

organize/pages.mdx#L16

Use 'sidebars?' instead of 'Sidebar'.
- Page layouts
- SEO meta tags
- Custom metadata
Expand Down Expand Up @@ -81,6 +81,22 @@
Restrict the page to users in specific groups. Users must belong to at least one listed group to access the page. You must configure [authentication](/deploy/authentication-setup) first. See [Control access with groups](/deploy/authentication-setup#control-access-with-groups) for more information.
</ResponseField>

<ResponseField name="related" type="false | array">
Customize the related pages shown at the bottom of the page. By default, Mintlify automatically suggests related pages based on the page content.

- Set to `false` to hide the related pages section on this page.
- Provide an array of paths or URLs to override the automatic suggestions with a curated list. Each entry can be a relative path, an absolute URL, or a `Title: path` mapping to set a custom link title.

```yaml
---
related:
- /api-playground/overview
- Custom title: /organize/navigation
- https://mintlify.com/blog
---
```
</ResponseField>

<ResponseField name="<custom>" type="string">
Any valid YAML frontmatter. For example, `product: "API"` or `version: "1.0.0"`.
</ResponseField>
Expand Down
16 changes: 16 additions & 0 deletions zh/organize/pages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,22 @@ keywords: ["tags", "tag", "frontmatter", "metadata", "layout"]
将页面限制为特定组中的用户。用户必须属于至少一个列出的组才能访问该页面。你必须先配置[身份验证](/zh/deploy/authentication-setup)。详情参见[使用组控制访问](/zh/deploy/authentication-setup#control-access-with-groups)。
</ResponseField>

<ResponseField name="related" type="false | array">
自定义页面底部显示的相关页面。默认情况下,Mintlify 会根据页面内容自动推荐相关页面。

- 设为 `false` 可在该页面隐藏相关页面板块。
- 提供路径或 URL 数组,用一份精选列表覆盖自动推荐。每个条目可以是相对路径、绝对 URL,或使用 `标题: 路径` 的映射形式来设置自定义链接标题。

```yaml
---
related:
- /zh/api-playground/overview
- 自定义标题: /zh/organize/navigation
- https://mintlify.com/blog
---
```
</ResponseField>

<ResponseField name="<custom>" type="string">
任意有效的 YAML frontmatter。例如:`product: "API"` 或 `version: "1.0.0"`。
</ResponseField>
Expand Down
Loading