blob: eea5205efefc0894492a38c55273db76171b4e80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
---
import Base from "@layouts/Base.astro";
import { SITE_TITLE } from "src/consts";
---
<Base title={SITE_TITLE} showSearch={true} showNav={true}>
<main>
<article>
<h2>Viva abril!</h2>
<figure>
<blockquote lang="es-VE" translate="no">
«Los que le cierran el camino a la revolución
pacífica le abren al mismo tiempo el camino a la
revolución violenta».
</blockquote>
<figcaption>
— Hugo Chávez.
<p>
Tradução: “Aqueles que fecham o caminho para a
revolução pacífica abrem, ao mesmo tempo, o
caminho para a revolução violenta.”
</p>
</figcaption>
</figure>
<p><em>Portugal <em>fez</em> diferente!</em></p>
</article>
</main>
</Base>
|