22 lines
549 B
Text
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>
|