From 40c0efaa43034b475d1bac409cee97cc63db8a03 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Mon, 8 Oct 2018 07:12:23 +0000 Subject: [PATCH] Deploy website Deploy website version based on d052feec40a6206f56410784db7d7092c4f8be66 --- docs/es-ES/1.2.0/api-pages.html | 10 +++++----- docs/es-ES/1.2.0/api-pages/index.html | 10 +++++----- docs/es-ES/1.2.1/api-pages.html | 10 +++++----- docs/es-ES/1.2.1/api-pages/index.html | 10 +++++----- docs/es-ES/1.3.0/api-pages.html | 10 +++++----- docs/es-ES/1.3.0/api-pages/index.html | 10 +++++----- docs/es-ES/1.3.1/api-pages.html | 10 +++++----- docs/es-ES/1.3.1/api-pages/index.html | 10 +++++----- docs/es-ES/1.3.2/api-pages.html | 10 +++++----- docs/es-ES/1.3.2/api-pages/index.html | 10 +++++----- docs/es-ES/1.3.3/api-pages.html | 10 +++++----- docs/es-ES/1.3.3/api-pages/index.html | 10 +++++----- docs/es-ES/api-pages.html | 10 +++++----- docs/es-ES/api-pages/index.html | 10 +++++----- 14 files changed, 70 insertions(+), 70 deletions(-) diff --git a/docs/es-ES/1.2.0/api-pages.html b/docs/es-ES/1.2.0/api-pages.html index 4664973dc4..f77f35dfa6 100644 --- a/docs/es-ES/1.2.0/api-pages.html +++ b/docs/es-ES/1.2.0/api-pages.html @@ -1,4 +1,4 @@ -Páginas y estilos · Docusaurus
Translate

Páginas y estilos

Docusaurus provides support for writing pages as React components inside the website/pages directory which will share the same header, footer, and styles as the rest of the site.

+
Translate

Páginas y estilos

Docusaurus proporciona soporte para escribir páginas como componentes React dentro de la carpeta de website/pages la cual compartirá la misma cabecera, pie de página y estilos del resto del sitio.

URLs for Pages

Any .js files in website/pages will be rendered to static HTML using the path of the file after pages. Los archivos en website/pages/en serán copiados en pages e invalidará cualquier archivo con el mismo nombre en pages. For example, the page for the website/pages/en/help.js file will be found at the URL ${baseUrl}en/help.js as well as the URL ${baseUrl}help.js, where ${baseUrl} is the baseUrl field set in your siteConfig.js file.

-

Titles for Pages

+

Títulos de páginas

By default, the title of your page is <title> • <tagline> where title and tagline fields are set in siteConfig.js. You can exclude the tagline in the title by setting disableTitleTagline to true. If you want to set a specific title for your custom pages, add a title class property on your exported React component.

Ejemplo:

const React = require('react');
@@ -69,7 +69,7 @@ MyPage.title = 'My Custom Title';
 
 module.exports = MyPage;
 
-

Description for Pages

+

Descripción de páginas

By default, the description your page is tagline set in siteConfig.js. If you want to set a specific description for your custom pages, add a description class property on your exported React component.

Ejemplo:

const React = require('react');
@@ -203,7 +203,7 @@ MyPage.description = 'My Custom Description';
 

You should configure your site's primary, secondary, and code block colors using the colors field in siteConfig as specified here. You can also configure other colors in the same way as described in the siteConfig doc.

You can provide your own custom styles by adding them anywhere in the website/static directory. Any .css files you provide in the static directory will get concatenated to the end of Docusaurus' provided styles, allowing you to add to or override Docusaurus default styles as you wish.

An easy way to figure out what classes you wish to override or add to is to start your server locally and use your browser's inspect element tool.

-