Update CI #4

Closed
rgebee wants to merge 99 commits from ci-test into main
Showing only changes of commit d77758a82f - Show all commits

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">
{@html post.html} <h1>{post.title}</h1>
</div> <section>
{@html post.html}
</section>
</main>