Fixed layout of blog test.

- Added main tags and replaced div with section.
- Added banner component to blog posts.
This commit is contained in:
Chris Dill 2020-09-04 14:30:03 +01:00
parent a478c5a4ba
commit 82a63c797e

View File

@ -14,6 +14,7 @@
</script> </script>
<script> <script>
import Banner from '../../components/banner.svelte'
export let post; export let post;
</script> </script>
@ -57,8 +58,11 @@
<title>{post.title}</title> <title>{post.title}</title>
</svelte:head> </svelte:head>
<h1>{post.title}</h1> <Banner/>
<div class='content'> <main class="container">
<h1>{post.title}</h1>
<section>
{@html post.html} {@html post.html}
</div> </section>
</main>