fix some blog stuff

This commit is contained in:
Akis 2023-04-01 21:36:04 +03:00
parent 53fcb5954c
commit 03a19fff53
Signed by untrusted user: akis
GPG Key ID: 267BF5C6677944ED
1 changed files with 8 additions and 6 deletions

View File

@ -2,11 +2,13 @@
export let data: any;
</script>
<div class="prose flex flex-col text-justify m-auto">
<img
src={data.post.feature_image}
alt="{data.post.title} image"
class="rounded"
/>
<div class="prose flex flex-col m-auto">
{#if data.post.feature_image}
<img
src={data.post.feature_image}
alt="{data.post.title} image"
class="rounded"
/>
{/if}
{@html data.post.html}
</div>