Skip to content

Build a Simple Site with Microformats

This tutorial uses Astro but the concepts apply to any framework.

Terminal window
pnpm create astro@latest otso-site
cd otso-site

Render a note:

<article class="h-entry">
<p class="p-name e-content">{note.content.text}</p>
<a class="u-url" href="{note.url}">Permalink</a>
</article>

Fetch mentions from the projections and list them under each post.