Files
kopyl.dev.v2/src/routes/blog/+page.svelte
Anatoly Kopyl 27044c9711
Some checks failed
Deploy / deploy (push) Blocked by required conditions
Deploy / build-and-publish (push) Has been cancelled
Blog auto listing
2024-09-30 01:10:30 +03:00

12 lines
255 B
Svelte

<script lang="ts">
export let data;
</script>
<section class="px-2 md:px-8 mb-16 max-w-[1280px] mx-auto">
{#each data.pages as page}
<a href={page.path}>
<h2 class="text-3xl mb-4 md:text-4xl">{page.title}</h2>
</a>
{/each}
</section>