#
Hello World
This is the first blog entry.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla ac justo cursus, ultrices sapien blandit, rhoncus dolor. Curabitur nec massa id ipsum sollicitudin egestas. Nullam volutpat porta est, nec feugiat purus feugiat a.
##
Its purpose is to test out the layout
- for example
- list items
- and nested
- list items
- also numbered
- list items
- and nested
- list items
##
Tables
| Column1 | Column2 | Column3 |
|---|---|---|
| item1 | item2 | item3 |
| item4 | item5 | item6 |
##
Code Blocks
import { useGettext } from "gettext-simple"
function App() {
const t = useGettext()
return (
<article>
<h2>{t("Hello World")}</h2>
<p>{t("Best blog post you have ever read.")}</p>
</article>
)
}