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