blob: 7e668d94f13379d57b33578e3047aba9c8f64bf2 (
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/en/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>
|