summaryrefslogtreecommitdiff
path: root/docs/src/pages/es/guides/styling.astro
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/pages/es/guides/styling.astro')
-rw-r--r--docs/src/pages/es/guides/styling.astro13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/src/pages/es/guides/styling.astro b/docs/src/pages/es/guides/styling.astro
new file mode 100644
index 000000000..d15e6298f
--- /dev/null
+++ b/docs/src/pages/es/guides/styling.astro
@@ -0,0 +1,13 @@
+---
+import { Markdown } from 'astro/components';
+import MainLayout from '~/layouts/MainLayout.astro';
+const [content] = Astro.fetchContent('/src/pages/guides/styling.md');
+---
+
+<MainLayout content="{content}">
+ <Markdown>
+ > Esta página todavía no está disponible en Español. Se muestra la versión en inglés.
+ </Markdown>
+ {content.astro.html}
+</MainLayout>
+