blob: 131b95ab4f6825c65ae016a328abeecdfc2d8db9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
import { Markdown } from 'astro/components';
import MainLayout from '~/layouts/MainLayout.astro';
const [content] = Astro.fetchContent(
'/src/pages/reference/renderer-reference.md'
);
---
<MainLayout {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>
|