familyfedie-website/src/components/TwoColumnPage.astro
Loyyd f85aca7d58
Some checks are pending
/ deploy (push) Waiting to run
Remove .html from internal links
2026-07-02 19:44:40 +02:00

22 lines
549 B
Text

---
import SiteSidebar from "./SiteSidebar.astro";
import { normalizeInternalHtmlLinks } from "../lib/urls";
const { articleHtml } = Astro.props;
const normalizedArticleHtml = normalizeInternalHtmlLinks(articleHtml);
---
<div id="main">
<div id="forbottom">
<div style="clear:both;"> </div>
<section id="container" class="two-columns-right">
<div id="content" role="main">
<Fragment set:html={normalizedArticleHtml} />
</div>
<SiteSidebar />
</section>
<div style="clear:both;"></div>
</div>
</div>