parent
39f68f0051
commit
9d0a823351
23 changed files with 1158 additions and 31 deletions
20
src/components/TwoColumnPage.astro
Normal file
20
src/components/TwoColumnPage.astro
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
import SiteSidebar from "./SiteSidebar.astro";
|
||||
|
||||
const { articleHtml } = Astro.props;
|
||||
---
|
||||
|
||||
<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={articleHtml} />
|
||||
</div>
|
||||
<SiteSidebar />
|
||||
</section>
|
||||
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue